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 aho
Recipients aho
Date 2013-05-08.22:32:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368052350.83.0.843381398629.issue17940@psf.upfronthosting.co.za>
In-reply-to
Content
In class HelpFormatter, class _Section, format_help(self)
(lines 199 & 200), the two lines

            for func, args in self.items:
                func(*args)

aren't necessary; the results of func are ignored.
"func" is applied (again) on the next line when the
output is joined into item_help.

Cheers
.a
History
Date User Action Args
2013-05-08 22:32:30ahosetrecipients: + aho
2013-05-08 22:32:30ahosetmessageid: <1368052350.83.0.843381398629.issue17940@psf.upfronthosting.co.za>
2013-05-08 22:32:30aholinkissue17940 messages
2013-05-08 22:32:30ahocreate