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 /Include/abstract.h | |
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 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index b8cc59c..c3c8fd1 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -524,9 +524,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ Py_ssize_t *buffer_len); /* - Takes an arbitrary object which must support the (writeable, + Takes an arbitrary object which must support the (writable, single segment) buffer interface and returns a pointer to a - writeable memory location in buffer of size buffer_len. + writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only set in case no error occurrs. Otherwise, -1 is returned and |