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 roysmith
Recipients roysmith
Date 2013-02-03.13:45:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359899140.94.0.20575006786.issue17113@psf.upfronthosting.co.za>
In-reply-to
Content
The following code, when run with "--help", omits the trailing newlines from the epilog.  It should just emit the string verbatim.  If the developer didn't want the extra newlines, he/she wouldn't have put them there.


import argparse
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter,
                                 epilog="foo\n\n")
parser.parse_args()
History
Date User Action Args
2013-02-03 13:45:40roysmithsetrecipients: + roysmith
2013-02-03 13:45:40roysmithsetmessageid: <1359899140.94.0.20575006786.issue17113@psf.upfronthosting.co.za>
2013-02-03 13:45:40roysmithlinkissue17113 messages
2013-02-03 13:45:40roysmithcreate