summaryrefslogtreecommitdiff
path: root/Include/bytearrayobject.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-10-05 16:28:04 -0400
committerBenjamin Peterson <benjamin@python.org>2013-10-05 16:28:04 -0400
commit9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726 (patch)
treeea5def8027ec846a0518f574057ae7faddaa444b /Include/bytearrayobject.h
parent5b720753872ff522a19fcc9ba6181caf785df2f1 (diff)
downloadcpython-git-9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726.tar.gz
fix comment
Diffstat (limited to 'Include/bytearrayobject.h')
-rw-r--r--Include/bytearrayobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/bytearrayobject.h b/Include/bytearrayobject.h
index 19e32a21ea..a757b88059 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? */