[Python-checkins] r81851 - python/branches/py3k/Doc/c-api/buffer.rst

brian.curtin python-checkins at python.org
Wed Jun 9 00:27:07 CEST 2010


Author: brian.curtin
Date: Wed Jun  9 00:27:07 2010
New Revision: 81851

Log:
Fix #8946. Extra PyObject* parameter documented which doesn't exist.


Modified:
   python/branches/py3k/Doc/c-api/buffer.rst

Modified: python/branches/py3k/Doc/c-api/buffer.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/buffer.rst	(original)
+++ python/branches/py3k/Doc/c-api/buffer.rst	Wed Jun  9 00:27:07 2010
@@ -249,10 +249,10 @@
       +------------------------------+---------------------------------------------------+
 
 
-.. cfunction:: void PyBuffer_Release(PyObject *obj, Py_buffer *view)
+.. cfunction:: void PyBuffer_Release(Py_buffer *view)
 
-   Release the buffer *view* over *obj*.  This should be called when the buffer
-   is no longer being used as it may free memory from it.
+   Release the buffer *view*.  This should be called when the buffer is no
+   longer being used as it may free memory from it.
 
 
 .. cfunction:: Py_ssize_t PyBuffer_SizeFromFormat(const char *)


More information about the Python-checkins mailing list