From: Benjamin Peterson Date: Sat, 5 Oct 2013 20:28:04 +0000 (-0400) Subject: fix comment X-Git-Tag: v3.4.0a4~271^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726;p=thirdparty%2FPython%2Fcpython.git fix comment --- diff --git a/Include/bytearrayobject.h b/Include/bytearrayobject.h index 19e32a21ea49..a757b8805929 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? */