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: Documentation of three PyDict_* functions
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: benjamin.peterson, docs@python, hagen
Priority: normal Keywords:

Created on 2010-11-03 15:54 by hagen, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg120328 - (view) Author: Hagen Fürstenau (hagen) Date: 2010-11-03 15:54
The documentation of the functions PyDict_Items, PyDict_Keys and PyDict_Values is incorrect: They do return PyListObject, but in Python 3.x this is not the same as dict.items() etc.
msg120347 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-11-03 21:35
r86144
msg120381 - (view) Author: Hagen Fürstenau (hagen) Date: 2010-11-04 06:47
The ReST links in http://docs.python.org/py3k/c-api/dict.html#PyDict_Items seem to be broken.
msg120543 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-11-05 21:59
This is fixed now.

2010/11/4 Hagen Fürstenau <report@bugs.python.org>:
>
> Hagen Fürstenau <hagen@zhuliguan.net> added the comment:
>
> The ReST links in http://docs.python.org/py3k/c-api/dict.html#PyDict_Items seem to be broken.
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue10300>
> _______________________________________
>
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54509
2010-11-05 21:59:40benjamin.petersonsetmessages: + msg120543
2010-11-04 06:47:59hagensetmessages: + msg120381
2010-11-03 21:35:53benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg120347

resolution: fixed
2010-11-03 15:54:18hagencreate