summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-01-12 21:57:36 (GMT)
committerLarry Hastings <larry@hastings.org>2014-01-12 21:57:36 (GMT)
commit0191be3899dbfc79403b06102f66bfc5f079a177 (patch)
tree95146e665ed2d800138540e5ec2f3e79df9ce4c8 /Doc
parent4a55fc5a9df90aa075c5756aaae0af33d9e8ca0a (diff)
downloadcpython-0191be3899dbfc79403b06102f66bfc5f079a177.zip
cpython-0191be3899dbfc79403b06102f66bfc5f079a177.tar.gz
cpython-0191be3899dbfc79403b06102f66bfc5f079a177.tar.bz2
Minor doc fix in Clinic howto.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/clinic.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst
index e9e1377..9c558bc5 100644
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -753,9 +753,10 @@ Py_buffer
---------
When using the ``Py_buffer`` converter
-(or the ``'s*'``, ``'w*'``, ``'*y'``, or ``'z*'`` legacy converters)
-note that the code Argument Clinic generates for you will automatically
-call :c:func:`PyBuffer_Release` on the buffer for you.
+(or the ``'s*'``, ``'w*'``, ``'*y'``, or ``'z*'`` legacy converters),
+you *must* not call :c:func:`PyBuffer_Release` on the provided buffer.
+Argument Clinic generates code that does it for you (in the parsing function).
+
Advanced converters