This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Justin Hodder
Recipients Justin Hodder
Date 2020-01-01.01:54:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577843695.28.0.342724259798.issue39175@roundup.psfhosted.org>
In-reply-to
Content
This works:
$ diff PythonDoesntWorks.py HowCanYouPayMana.v3.py
60c60
<         if x2.issubset(set(avalMana.keys())):
---
>         if x2.issubset(set(list(avalMana.keys()))):
62a63
>

this doesn't work:
$ diff PythonDoesntWorks.py HowCanYouPayMana.v3.py
60c60
<         if x2.issubset(set(avalMana.keys())):
---
>         if x2.issubset(set(list(avalMana.keys()))):
62a63
>                 print("cost",cost)
History
Date User Action Args
2020-01-01 01:54:55Justin Hoddersetrecipients: + Justin Hodder
2020-01-01 01:54:55Justin Hoddersetmessageid: <1577843695.28.0.342724259798.issue39175@roundup.psfhosted.org>
2020-01-01 01:54:55Justin Hodderlinkissue39175 messages
2020-01-01 01:54:55Justin Hoddercreate