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 David Friedman
Recipients Arfrever, David Friedman, bsduni, eric.araujo, ezio.melotti, r.david.murray
Date 2020-07-18.19:22:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595100178.02.0.772507560488.issue20840@roundup.psfhosted.org>
In-reply-to
Content
I know this is 6 years too late, but I had this problem a few minutes ago on Python2.7.  Googling didn't find me anything relevant except this bug entry.  However, I found the cause myself: I had a test file named argparse.py (and an argparse.pyc) in the current directory (i.e. $PYTHONPATH) which was overriding the one in the main python library path. Once I renamed my argparse.py and argparse.pyc to something else, python found the real argparse and that message (the same one you saw) disappeared.
History
Date User Action Args
2020-07-18 19:22:58David Friedmansetrecipients: + David Friedman, ezio.melotti, eric.araujo, Arfrever, r.david.murray, bsduni
2020-07-18 19:22:58David Friedmansetmessageid: <1595100178.02.0.772507560488.issue20840@roundup.psfhosted.org>
2020-07-18 19:22:58David Friedmanlinkissue20840 messages
2020-07-18 19:22:57David Friedmancreate