diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-05 20:28:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-05 20:28:04 (GMT) |
commit | 9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726 (patch) | |
tree | ea5def8027ec846a0518f574057ae7faddaa444b /Include | |
parent | 5b720753872ff522a19fcc9ba6181caf785df2f1 (diff) | |
download | cpython-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.zip cpython-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.tar.gz cpython-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.tar.bz2 |
fix comment
Diffstat (limited to 'Include')
-rw-r--r-- | Include/bytearrayobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/bytearrayobject.h b/Include/bytearrayobject.h index 19e32a2..a757b88 100644 --- a/Include/bytearrayobject.h +++ b/Include/bytearrayobject.h @@ -22,7 +22,7 @@ extern "C" { #ifndef Py_LIMITED_API typedef struct { PyObject_VAR_HEAD - Py_ssize_t ob_alloc; /* How many bytes allocated in ob_buffer */ + Py_ssize_t ob_alloc; /* How many bytes allocated in ob_bytes */ char *ob_bytes; /* Physical backing buffer */ char *ob_start; /* Logical start inside ob_bytes */ /* XXX(nnorwitz): should ob_exports be Py_ssize_t? */ |