fix comment
authorBenjamin Peterson <benjamin@python.org>
Sat, 5 Oct 2013 20:28:04 +0000 (16:28 -0400)
committerBenjamin Peterson <benjamin@python.org>
Sat, 5 Oct 2013 20:28:04 +0000 (16:28 -0400)
Include/bytearrayobject.h

index 19e32a21ea49fa68ed20b95b031e174f243338da..a757b880592979fe8f2496f32b95868273a71b1a 100644 (file)
@@ -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? */