[issue17158] help() module searcher text improvement

2013-02-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue17158] help() module searcher text improvement

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f84fe5a997b by Terry Jan Reedy in branch 'default': Closes #17158: Add 'symbols' to help() welcome message; clarify 'modules spam' http://hg.python.org/cpython/rev/4f84fe5a997b -- nosy: +python-dev resolution: -> fixed stage: patch review

[issue17158] help() module searcher text improvement

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch looks good to me. This change is helpful and definitely an improvement over the existing text. Please go ahead with committing it, Terry. Thanks. -- ___ Python tracker

[issue17158] help() module searcher text improvement

2013-02-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Looking further at the pydoc code, I see that "Here is a list. Enter any listed item to get more help", with both sentences printed before the list, is normal. Having a post-list prompt for the list of all modules is the exception. So I would no longer make th

[issue17158] help() module searcher text improvement

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: You will stumble on that message, only if you give help("module ") and note that could be any module in the PYTHONPATH. We can change to show the text only if the module is a valid module, but I think, it is costly do that computation for help text. A better ap

[issue17158] help() module searcher text improvement

2013-02-08 Thread Ramchandra Apte
New submission from Ramchandra Apte: help("modules spam") prints out "Here is a list of matching modules. Enter any module name to get more help." before it has even found the modules. This gives the impression that it has found the modules yet it hasn't printed the modules yet. I would sugge