From: Raymond Hettinger Date: Sun, 8 Feb 2004 11:08:52 +0000 (+0000) Subject: Revert improvement to list.append() checked in before it was ready. X-Git-Tag: v2.4a1~852 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=204b0006109d12364f608058174a1d352830260f;p=thirdparty%2FPython%2Fcpython.git Revert improvement to list.append() checked in before it was ready. --- diff --git a/Include/listobject.h b/Include/listobject.h index 6221b80d1f92..14ed72ef8753 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -22,7 +22,6 @@ extern "C" { typedef struct { PyObject_VAR_HEAD PyObject **ob_item; - int allocated; } PyListObject; PyAPI_DATA(PyTypeObject) PyList_Type;