From 9185a5ae7ec6fa6e27ca1e1b0562c86f4c928726 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 5 Oct 2013 16:28:04 -0400 Subject: [PATCH] fix comment --- Include/bytearrayobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/bytearrayobject.h b/Include/bytearrayobject.h index 19e32a21ea49fa..a757b880592979 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? */