summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/buffer.rst
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-06-08 22:30:34 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-06-08 22:30:34 (GMT)
commite040dd5c961270e3ecfae43d4086bbab55bec808 (patch)
tree01a6de105228720fb8d65650bd2c40c8806ca000 /Doc/c-api/buffer.rst
parent55b002f096cf85b8646df1c0ba87445fd326e239 (diff)
downloadcpython-e040dd5c961270e3ecfae43d4086bbab55bec808.zip
cpython-e040dd5c961270e3ecfae43d4086bbab55bec808.tar.gz
cpython-e040dd5c961270e3ecfae43d4086bbab55bec808.tar.bz2
Merged revisions 81851 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r81851 | brian.curtin | 2010-06-08 17:27:07 -0500 (Tue, 08 Jun 2010) | 2 lines Fix #8946. Extra PyObject* parameter documented which doesn't exist. ........
Diffstat (limited to 'Doc/c-api/buffer.rst')
-rw-r--r--Doc/c-api/buffer.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst
index ec44a99..af8a3a0 100644
--- a/Doc/c-api/buffer.rst
+++ b/Doc/c-api/buffer.rst
@@ -249,10 +249,10 @@ Buffer related functions
+------------------------------+---------------------------------------------------+
-.. 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 *)