From: Christian Heimes Date: Sun, 30 Nov 2008 21:16:28 +0000 (+0000) Subject: w# requires Py_ssize_t X-Git-Tag: v2.7a1~2602 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c70e5f9975e6f9a2a879bd89283aa898e777817e;p=thirdparty%2FPython%2Fcpython.git w# requires Py_ssize_t --- diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst index 25254382091b..120c2810848f 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