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 Devin Jeanpierre
Recipients Devin Jeanpierre, eric.araujo, terry.reedy
Date 2012-01-07.02:17:16
SpamBayes Score 0.00033826768
Marked as misclassified No
Message-id <1325902638.0.0.159576945123.issue13691@psf.upfronthosting.co.za>
In-reply-to
Content
> IMO, help('help') should document the help function, not start an interactive help session (that’d be help()).

Ahhh, that explains it. help('help') isn't ever meant to be called; it's supposed to be:

>>> help()
...
help> help
...

the call to "help" at the help> prompt is equivalent to help('help').


help('help') should do something different, such as say how to use the help function, as you say. Whereas "help> help" makes sense.
History
Date User Action Args
2012-01-07 02:17:18Devin Jeanpierresetrecipients: + Devin Jeanpierre, terry.reedy, eric.araujo
2012-01-07 02:17:18Devin Jeanpierresetmessageid: <1325902638.0.0.159576945123.issue13691@psf.upfronthosting.co.za>
2012-01-07 02:17:17Devin Jeanpierrelinkissue13691 messages
2012-01-07 02:17:16Devin Jeanpierrecreate