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 samwyse
Recipients samwyse
Date 2014-12-15.21:02:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1418677369.11.0.558268336279.issue23059@psf.upfronthosting.co.za>
In-reply-to
Content
I've discovered that do_help method of cmd.Cmd prints the documented and undocumented commands in sorted order, but does not sort the miscellaneous topics.  This would be an easy fix, just change "self.print_topics(self.misc_header, help.keys(),15,80)" to use "sorted(help.keys())".
History
Date User Action Args
2014-12-15 21:02:49samwysesetrecipients: + samwyse
2014-12-15 21:02:49samwysesetmessageid: <1418677369.11.0.558268336279.issue23059@psf.upfronthosting.co.za>
2014-12-15 21:02:49samwyselinkissue23059 messages
2014-12-15 21:02:48samwysecreate