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 ezio.melotti
Recipients Carl.M.Johnson, cvrebert, docs@python, ezio.melotti
Date 2011-04-26.02:03:54
SpamBayes Score 0.00024153477
Marked as misclassified No
Message-id <1303783435.29.0.491442975979.issue11926@psf.upfronthosting.co.za>
In-reply-to
Content
True, False and None are also included in keyword.kwlist:
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

The help() is also missing for 'None' and 'False', but works for 'True':

>>> help('None')
no Python documentation found for 'None'
>>> help('False')
no Python documentation found for 'False'
>>> help('True')
Help on bool object:

True = class bool(int)
 |  bool(x) -> bool
 ...

On 3.3 it's the same.
History
Date User Action Args
2011-04-26 02:03:55ezio.melottisetrecipients: + ezio.melotti, cvrebert, docs@python, Carl.M.Johnson
2011-04-26 02:03:55ezio.melottisetmessageid: <1303783435.29.0.491442975979.issue11926@psf.upfronthosting.co.za>
2011-04-26 02:03:54ezio.melottilinkissue11926 messages
2011-04-26 02:03:54ezio.melotticreate