diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-05 16:28:04 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-05 16:28:04 -0400 |
commit | 9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726 (patch) | |
tree | ea5def8027ec846a0518f574057ae7faddaa444b /Include/bytearrayobject.h | |
parent | 5b720753872ff522a19fcc9ba6181caf785df2f1 (diff) | |
download | cpython-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.tar.gz cpython-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.zip |
fix comment
Diffstat (limited to 'Include/bytearrayobject.h')
-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 19e32a21ea4..a757b880592 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? */ |