summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-11-30 21:16:28 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-11-30 21:16:28 (GMT)
commitc70e5f9975e6f9a2a879bd89283aa898e777817e (patch)
tree57ab2448f358c074e0ed6694f3cef00a457f1e45 /Doc
parentbcb017f35338cc088fca90e942cf249ec868c2f0 (diff)
downloadcpython-c70e5f9975e6f9a2a879bd89283aa898e777817e.zip
cpython-c70e5f9975e6f9a2a879bd89283aa898e777817e.tar.gz
cpython-c70e5f9975e6f9a2a879bd89283aa898e777817e.tar.bz2
w# requires Py_ssize_t
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/arg.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst
index 2525438..120c281 100644
--- a/Doc/c-api/arg.rst
+++ b/Doc/c-api/arg.rst
@@ -251,7 +251,7 @@ variable(s) whose address should be passed.
or use ``w#`` instead. Only single-segment buffer objects are accepted;
:exc:`TypeError` is raised for all others.
-``w#`` (read-write character buffer) [char \*, int]
+``w#`` (read-write character buffer) [char \*, Py_ssize_t]
Like ``s#``, but accepts any object which implements the read-write buffer
interface. The :ctype:`char \*` variable is set to point to the first byte of
the buffer, and the :ctype:`int` is set to the length of the buffer. Only