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 tshepang
Recipients bethard, docs@python, eric.araujo, georg.brandl, python-dev, sandro.tosi, tshepang
Date 2012-02-20.10:26:24
SpamBayes Score 4.4520304e-05
Marked as misclassified No
Message-id <1329733585.51.0.233173986338.issue13605@psf.upfronthosting.co.za>
In-reply-to
Content
(this is only concerning the latest commit)

Not sure if I should open a new issue, but why is there a print function at all, given that:

>>> print(parser.parse_args('--foo B cmd --arg1 XX ZZ'.split()))
Namespace(args=['--arg1', 'XX', 'ZZ'], command='cmd', foo='B')

>>> parser.parse_args('--foo B cmd --arg1 XX ZZ'.split())
Namespace(args=['--arg1', 'XX', 'ZZ'], command='cmd', foo='B')
History
Date User Action Args
2012-02-20 10:26:25tshepangsetrecipients: + tshepang, georg.brandl, bethard, eric.araujo, sandro.tosi, docs@python, python-dev
2012-02-20 10:26:25tshepangsetmessageid: <1329733585.51.0.233173986338.issue13605@psf.upfronthosting.co.za>
2012-02-20 10:26:24tshepanglinkissue13605 messages
2012-02-20 10:26:24tshepangcreate