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.

classification
Title: types.NoneType missing
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: andersk, docs@python, python-dev, r.david.murray
Priority: normal Keywords:

Created on 2012-07-23 00:19 by andersk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg166189 - (view) Author: Anders Kaseorg (andersk) * Date: 2012-07-23 00:20
http://docs.python.org/py3k/library/constants.html#None says that None is the sole value type types.NoneType.  However, NoneType was removed from the types module with Python 3.
msg166190 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-07-23 00:44
New changeset 84b577567fab by R David Murray in branch '3.2':
#15429: Fix invalid mention of types.NoneType from None docs.
http://hg.python.org/cpython/rev/84b577567fab

New changeset c43d73277756 by R David Murray in branch 'default':
Merge #15429: Fix invalid mention of types.NoneType from None docs.
http://hg.python.org/cpython/rev/c43d73277756
msg166191 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-07-23 00:45
Thanks for the report.  Fixed.
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59634
2012-07-23 00:45:04r.david.murraysetstatus: open -> closed

versions: + Python 3.3
nosy: + r.david.murray

messages: + msg166191
resolution: fixed
stage: resolved
2012-07-23 00:44:06python-devsetnosy: + python-dev
messages: + msg166190
2012-07-23 00:20:36andersksetmessages: + msg166189
2012-07-23 00:19:35anderskcreate