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: The documentation of PyType_Type in py3k mentions types.TypeType
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: daniel.urban, docs@python, georg.brandl, tlesher
Priority: normal Keywords: patch

Created on 2010-07-08 18:09 by daniel.urban, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
remove-extraneous-types.diff tlesher, 2010-07-19 21:00 review
Messages (3)
msg109560 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-07-08 18:09
The documentation of PyType_Type (http://docs.python.org/dev/py3k/c-api/type.html#PyType_Type) is this: 
"This is the type object for type objects; it is the same object as type and types.TypeType  in the Python layer."

But in py3k there is no types.TypeType object.
msg110809 - (view) Author: Tim Lesher (tlesher) * Date: 2010-07-19 21:00
There are a number of similar mentions in the C API docs and index; attached is a patch that removes each.
msg118935 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-10-17 11:00
Thanks, fixed in r85633.
History
Date User Action Args
2022-04-11 14:57:03adminsetgithub: 53450
2010-10-17 11:00:21georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg118935

resolution: fixed
2010-07-19 21:00:55tleshersetfiles: + remove-extraneous-types.diff

nosy: + tlesher
messages: + msg110809

keywords: + patch
2010-07-08 18:09:54daniel.urbancreate