diff options
author | Raymond Hettinger <python@rcn.com> | 2002-09-08 04:39:28 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-09-08 04:39:28 (GMT) |
commit | 513069028fed8a43474a86bfa823bbd0753deca1 (patch) | |
tree | 064a3c9b83e787de2cff1eb6bc7d7b0545071192 /Doc | |
parent | b2c729fe2758d13ce4a5affdc67c3f7573edbc48 (diff) | |
download | cpython-513069028fed8a43474a86bfa823bbd0753deca1.zip cpython-513069028fed8a43474a86bfa823bbd0753deca1.tar.gz cpython-513069028fed8a43474a86bfa823bbd0753deca1.tar.bz2 |
Fix API typo. The write buffer is not const. Closes SF 606216.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/abstract.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index 3331dcc..6bf96b2 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -987,7 +987,7 @@ else { \end{cfuncdesc} \begin{cfuncdesc}{int}{PyObject_AsWriteBuffer}{PyObject *obj, - const char **buffer, + char **buffer, int *buffer_len} Returns a pointer to a writeable memory location. The \var{obj} argument must support the single-segment, character buffer |