[issue6821] incorrect doc for PyBuffer_Release

2009-09-02 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r74631, will be merged to other branches soon. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue6821] incorrect doc for PyBuffer_Release

2009-09-02 Thread egreen
New submission from egreen : 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) -- assignee: georg.brandl components: Documentation messages: 92165 nosy: egreen,