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: PyType_GenericSet/GetDict functions misnamed in docs?
Type: Stage: resolved
Components: Documentation Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: BreamoreBoy, Wolf.Ihlenfeldt, docs@python, eryksun, python-dev
Priority: normal Keywords:

Created on 2013-07-18 19:10 by Wolf.Ihlenfeldt, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg193315 - (view) Author: Wolf Ihlenfeldt (Wolf.Ihlenfeldt) Date: 2013-07-18 19:10
Are the names of functions PyType_GenericSetDict and -GetDict correctly documented (for 3.3.2), or should they be documented as PyObject_GenericGet/SetDict instead? The PyType-prefixed names are out of place in the section, and functions of these names not in the source. The PyObject_-variants are present.
msg228612 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-10-05 18:34
Can someone with knowledge of the C code associated with the object/type system comment on this please.
msg228615 - (view) Author: Eryk Sun (eryksun) * (Python triager) Date: 2014-10-05 19:03
See changeset 78f93eb7dd75. The names in the docs are wrong.
msg228633 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-06 01:21
New changeset 9dbd7d34cbcf by Benjamin Peterson in branch '3.4':
PyObject not PyType (closes #18494)
https://hg.python.org/cpython/rev/9dbd7d34cbcf

New changeset ec3077e23b7d by Benjamin Peterson in branch 'default':
merge 3.4 (#18494)
https://hg.python.org/cpython/rev/ec3077e23b7d
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62694
2014-10-06 01:21:11python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg228633

resolution: fixed
stage: resolved
2014-10-05 19:03:48eryksunsetnosy: + eryksun
messages: + msg228615
2014-10-05 18:34:00BreamoreBoysetnosy: + BreamoreBoy
messages: + msg228612
2013-07-18 19:10:54Wolf.Ihlenfeldtcreate