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 markastern
Recipients bethard, eric.araujo, gkraser, markastern
Date 2016-02-01.19:00:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454353246.23.0.69722439269.issue9779@psf.upfronthosting.co.za>
In-reply-to
Content
This bit me also. For anybody else reading this, argparsenobug.py includes a class that provides a workaround.

python argparsebug.py --help

works, but:

python argparsebug.py --help > <some file>
python argparsebug.py --help | more

give the error.

However:

python argparsenobug.py --help
python argparsenobug.py --help > <some file>
python argparsenobug.py --help | more

all work.
History
Date User Action Args
2016-02-01 19:00:46markasternsetrecipients: + markastern, bethard, eric.araujo, gkraser
2016-02-01 19:00:46markasternsetmessageid: <1454353246.23.0.69722439269.issue9779@psf.upfronthosting.co.za>
2016-02-01 19:00:46markasternlinkissue9779 messages
2016-02-01 19:00:46markasterncreate