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 hct
Recipients BreamoreBoy, brian.curtin, hct, r.david.murray, tim.golden, vstinner
Date 2013-12-10.21:41:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386711669.03.0.05744070383.issue19914@psf.upfronthosting.co.za>
In-reply-to
Content
the other issue I'm also seeing is that help() doesn't seem to take exactly an object as an optional argument. perhaps Python manual for help() should be updated according to the actual implementation?

>>> help('hello')
no Python documentation found for 'hello'

>>> type('hello')
<class 'str'>
>>> a='hello'
>>> help(a)
no Python documentation found for 'hello'

>>>
History
Date User Action Args
2013-12-10 21:41:09hctsetrecipients: + hct, vstinner, tim.golden, r.david.murray, brian.curtin, BreamoreBoy
2013-12-10 21:41:09hctsetmessageid: <1386711669.03.0.05744070383.issue19914@psf.upfronthosting.co.za>
2013-12-10 21:41:09hctlinkissue19914 messages
2013-12-10 21:41:09hctcreate