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 rhettinger
Recipients rhettinger
Date 2012-07-12.19:48:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342122491.31.0.595399950091.issue15337@psf.upfronthosting.co.za>
In-reply-to
Content
The following minimal script:
-----------------------------
import cmd
class C(cmd.Cmd): pass
C().cmdloop()

Creates the following help display:
-----------------------------------
(Cmd) help

Undocumented commands:
======================
help

For people who are consistently documenting their other commands, it is annoying to have anything at all listed in the "undocumented section".  So, help should have it's own default help message.
History
Date User Action Args
2012-07-12 19:48:11rhettingersetrecipients: + rhettinger
2012-07-12 19:48:11rhettingersetmessageid: <1342122491.31.0.595399950091.issue15337@psf.upfronthosting.co.za>
2012-07-12 19:48:10rhettingerlinkissue15337 messages
2012-07-12 19:48:10rhettingercreate