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: Docs list nonexistant PyObject_CopyToObject function
Type: Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mark.dickinson, pitrou, python-dev, twouters
Priority: normal Keywords:

Created on 2011-03-13 02:44 by twouters, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg130717 - (view) Author: Thomas Wouters (twouters) * (Python committer) Date: 2011-03-13 02:44
The buffer docs on http://docs.python.org/c-api/buffer.html list PyObject_CopyToData, but no such function seems to exist.
msg130718 - (view) Author: Thomas Wouters (twouters) * (Python committer) Date: 2011-03-13 02:50
Eh, I mean PyObject_CopyToObject.
msg130756 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-03-13 18:27
Indeed, it doesn't exist. There is also a function named PyObject_CopyData which is not documented anywhere (and I'd bet noone has ever used it).
msg130757 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-03-13 18:32
New changeset 539e6f1fce78 by Antoine Pitrou in branch '3.1':
Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478)
http://hg.python.org/cpython/rev/539e6f1fce78

New changeset eb8c2f43b251 by Antoine Pitrou in branch '3.2':
Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478)
http://hg.python.org/cpython/rev/eb8c2f43b251

New changeset 955547e57cff by Antoine Pitrou in branch 'default':
Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478)
http://hg.python.org/cpython/rev/955547e57cff
msg130758 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-03-13 18:35
New changeset 248800b58175 by Antoine Pitrou in branch '2.7':
Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478)
http://hg.python.org/cpython/rev/248800b58175
History
Date User Action Args
2022-04-11 14:57:14adminsetgithub: 55687
2011-03-13 18:35:35pitrousetstatus: open -> closed
nosy: twouters, mark.dickinson, pitrou, docs@python, python-dev
resolution: fixed
stage: resolved
2011-03-13 18:35:11python-devsetnosy: twouters, mark.dickinson, pitrou, docs@python, python-dev
messages: + msg130758
2011-03-13 18:32:43python-devsetnosy: + python-dev
messages: + msg130757
2011-03-13 18:27:45pitrousetnosy: + mark.dickinson, pitrou
messages: + msg130756
2011-03-13 02:51:05twouterssetnosy: twouters, docs@python
title: Docs list nonexistant PyObject_CopyToData function -> Docs list nonexistant PyObject_CopyToObject function
2011-03-13 02:50:39twouterssetnosy: twouters, docs@python
messages: + msg130718
2011-03-13 02:44:47twouterscreate