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: incorrect doc for PyBuffer_Release
Type: Stage:
Components: Documentation Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: drukker, georg.brandl
Priority: normal Keywords:

Created on 2009-09-02 12:40 by drukker, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg92165 - (view) Author: Derk Drukker (drukker) Date: 2009-09-02 12:40
In documentation (c-api/buffer.html):

  void PyBuffer_Release(PyObject *obj, Py_buffer *view)

should be:

  void PyBuffer_Release(Py_buffer *view)

(as per Include/abstract.h)
msg92181 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-09-02 20:37
Thanks, fixed in r74631, will be merged to other branches soon.
History
Date User Action Args
2022-04-11 14:56:52adminsetgithub: 51070
2009-09-02 20:37:39georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg92181
2009-09-02 12:40:24drukkercreate