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: typo in buffer api docs
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: ash, georg.brandl
Priority: normal Keywords:

Created on 2009-08-06 11:47 by ash, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg91355 - (view) Author: Alexey Shamrin (ash) Date: 2009-08-06 11:47
Typo in PyObject_GetBuffer docs: "...handle all the complexibity..."

Links:

http://docs.python.org/c-api/buffer.html#buffer-related-functions
http://docs.python.org/dev/c-api/buffer.html#buffer-related-functions
http://docs.python.org/3.1/c-api/buffer.html#buffer-related-functions
http://docs.python.org/dev/py3k/c-api/buffer.html#buffer-related-functions
msg91356 - (view) Author: Alexey Shamrin (ash) Date: 2009-08-06 11:57
Well, there's another typo in buffer documentation (PyBuffer_Release):

"This shouldd be called..."

Only in 2.x series:

http://docs.python.org/c-api/buffer.html#PyBuffer_Release
http://docs.python.org/dev/c-api/buffer.html#PyBuffer_Release
msg91370 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-08-06 17:44
Thanks, fixed in r74333, will be merged to the other branches eventually.
History
Date User Action Args
2022-04-11 14:56:51adminsetgithub: 50907
2009-08-06 17:44:15georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg91370
2009-08-06 11:57:53ashsetmessages: + msg91356
2009-08-06 11:47:45ashcreate