diff options
Diffstat (limited to 'Include/setobject.h')
-rw-r--r-- | Include/setobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/setobject.h b/Include/setobject.h index 267e3b0..abbd847 100644 --- a/Include/setobject.h +++ b/Include/setobject.h @@ -15,6 +15,7 @@ typedef struct { PyObject_HEAD PyObject *data; long hash; /* only used by frozenset objects */ + PyObject *weakreflist; /* List of weak references */ } PySetObject; PyAPI_DATA(PyTypeObject) PySet_Type; |