[issue5991] Add non-command help topics to help completion of cmd.Cmd

2010-01-06 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the patch; applied and fixed up a bit in r77332. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker

[issue5991] Add non-command help topics to help completion of cmd.Cmd

2009-05-10 Thread Floris Bruynooghe
New submission from Floris Bruynooghe : The cmd.Cmd module has a default complete_help() method which will complete all existing commands (methods starting with "do_"). It would be useful to complete all exising help topics too by default, i.e. all methods starting with "help_". The attached pa