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 terry.reedy
Recipients docs@python, terry.reedy
Date 2013-12-14.01:34:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386984892.27.0.919528696836.issue19980@psf.upfronthosting.co.za>
In-reply-to
Content
>>> help(1)
# help on int
>>> help(b'a')
# help on bytes
>>> help('a')
no Python documentation found for 'a'

The reason for this unhelpful response is that strings are treated differently from all other non-class objects. (msg205861 thought this a bug.) The strings value is matched against strings that would be recognized at the help> prompt given after help().

>>> help('topics')
# list of TOPICS
>>> help('LISTS')
# information about mutable sequences

Suggestion: add something more about what to do. Example enhanced response:

No Python documentation found for 'a'. Try help('help') for information on recognized strings or help(str) for help on the str class.

I believe this could be backported since help() is intented for interactive use only.
History
Date User Action Args
2013-12-14 01:34:52terry.reedysetrecipients: + terry.reedy, docs@python
2013-12-14 01:34:52terry.reedysetmessageid: <1386984892.27.0.919528696836.issue19980@psf.upfronthosting.co.za>
2013-12-14 01:34:51terry.reedylinkissue19980 messages
2013-12-14 01:34:50terry.reedycreate