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 hct
Date 2013-12-06.23:27:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386372447.57.0.257737240226.issue19914@psf.upfronthosting.co.za>
In-reply-to
Content
not sure if this ever worked. first time using help([object]), but these should work according to the documentation. OS is Win7 SP1 32-bit.

Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> help(list)
Not enough memory.

>>> help(list())
Not enough memory.

>>> help([])
Not enough memory.

>>> help(tuple())
Not enough memory.

>>> help(())
Not enough memory.

>>> help(str.format)
Not enough memory.

>>> help(str)
Not enough memory.

>>> help(b'1234')
Not enough memory.

>>> help(str.strip)
Not enough memory.

>>> help(str.count)
Not enough memory.

>>>
History
Date User Action Args
2013-12-06 23:27:27hctsetrecipients: + hct
2013-12-06 23:27:27hctsetmessageid: <1386372447.57.0.257737240226.issue19914@psf.upfronthosting.co.za>
2013-12-06 23:27:27hctlinkissue19914 messages
2013-12-06 23:27:27hctcreate