mirror of https://github.com/python/cpython
#6821: fix signature of PyBuffer_Release().
This commit is contained in:
parent
6fcf9b50bc
commit
eb4781c279
|
@ -254,9 +254,9 @@ 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
|
||||
Release the buffer *view*. This should be called when the buffer
|
||||
is no longer being used as it may free memory from it.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue