summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-02-08 11:08:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-02-08 11:08:52 (GMT)
commit204b0006109d12364f608058174a1d352830260f (patch)
tree2486780a17ec96e1daa00891effec066890b180d /Include
parent06353f76beab69a538d3a55ca9b6df7e9754b999 (diff)
downloadcpython-204b0006109d12364f608058174a1d352830260f.zip
cpython-204b0006109d12364f608058174a1d352830260f.tar.gz
cpython-204b0006109d12364f608058174a1d352830260f.tar.bz2
Revert improvement to list.append() checked in before it was ready.
Diffstat (limited to 'Include')
-rw-r--r--Include/listobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h
index 6221b80..14ed72e 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;