mirror of
https://github.com/python/cpython.git
synced 2025-11-12 07:02:33 +00:00
Minor doc fix in Clinic howto.
This commit is contained in:
parent
4a55fc5a9d
commit
0191be3899
1 changed files with 4 additions and 3 deletions
|
|
@ -753,9 +753,10 @@ Py_buffer
|
||||||
---------
|
---------
|
||||||
|
|
||||||
When using the ``Py_buffer`` converter
|
When using the ``Py_buffer`` converter
|
||||||
(or the ``'s*'``, ``'w*'``, ``'*y'``, or ``'z*'`` legacy converters)
|
(or the ``'s*'``, ``'w*'``, ``'*y'``, or ``'z*'`` legacy converters),
|
||||||
note that the code Argument Clinic generates for you will automatically
|
you *must* not call :c:func:`PyBuffer_Release` on the provided buffer.
|
||||||
call :c:func:`PyBuffer_Release` on the buffer for you.
|
Argument Clinic generates code that does it for you (in the parsing function).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Advanced converters
|
Advanced converters
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue