diff options
author | Sean Reifscheider <jafo@tummy.com> | 2007-09-17 17:55:36 (GMT) |
---|---|---|
committer | Sean Reifscheider <jafo@tummy.com> | 2007-09-17 17:55:36 (GMT) |
commit | 54cf12b625397ff52e30efd9b14f0b61edfdfd9d (patch) | |
tree | 98eb3de7701e05ae46d4fa16e4c357a162e8a9fc /Doc/c-api/abstract.rst | |
parent | a5b8e04bd572099095fbf6b32dadde637b6e6f7b (diff) | |
download | cpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.zip cpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.tar.gz cpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.tar.bz2 |
Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.
Diffstat (limited to 'Doc/c-api/abstract.rst')
-rw-r--r-- | Doc/c-api/abstract.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/abstract.rst b/Doc/c-api/abstract.rst index 44bd579..515150d 100644 --- a/Doc/c-api/abstract.rst +++ b/Doc/c-api/abstract.rst @@ -944,7 +944,7 @@ Buffer Protocol .. cfunction:: int PyObject_AsWriteBuffer(PyObject *obj, void **buffer, Py_ssize_t *buffer_len) - Returns a pointer to a writeable memory location. The *obj* argument must + Returns a pointer to a writable memory location. The *obj* argument must support the single-segment, character buffer interface. On success, returns ``0``, sets *buffer* to the memory location and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:`TypeError` on error. |