Issue 9204: The documentation of PyType_Type in py3k mentions types.TypeType (original) (raw)

Issue9204

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:03 admin set github: 53450
2010-10-17 11:00:21 georg.brandl set status: open -> closednosy: + georg.brandlmessages: + resolution: fixed
2010-07-19 21:00:55 tlesher set files: + remove-extraneous-types.diffnosy: + tleshermessages: + keywords: + patch
2010-07-08 18:09:54 daniel.urban create