From 204b0006109d12364f608058174a1d352830260f Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 8 Feb 2004 11:08:52 +0000 Subject: [PATCH] Revert improvement to list.append() checked in before it was ready. --- Include/listobject.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Include/listobject.h b/Include/listobject.h index 6221b80d1f..14ed72ef87 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; -- 2.50.1