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 guettli
Recipients docs@python, guettli
Date 2014-02-11.15:28:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392132505.16.0.864715722344.issue20598@psf.upfronthosting.co.za>
In-reply-to
Content
I think the docs of argparse still contain confusing magic:

parser.parse_args('7'.split())


You know what it does and I know it. But a lot of people new to Python, don't understand what this should be.

Please use:

parser.parse_args(['7'])


Close this ticket, if you don't care for people new to Python.
History
Date User Action Args
2014-02-11 15:28:25guettlisetrecipients: + guettli, docs@python
2014-02-11 15:28:25guettlisetmessageid: <1392132505.16.0.864715722344.issue20598@psf.upfronthosting.co.za>
2014-02-11 15:28:25guettlilinkissue20598 messages
2014-02-11 15:28:24guettlicreate