diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/listobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 14ed72e..6221b80 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -22,6 +22,7 @@ extern "C" { typedef struct { PyObject_VAR_HEAD PyObject **ob_item; + int allocated; } PyListObject; PyAPI_DATA(PyTypeObject) PyList_Type; |