diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/setobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/setobject.h b/Include/setobject.h index bb5316f..f17bc1b 100644 --- a/Include/setobject.h +++ b/Include/setobject.h @@ -57,9 +57,9 @@ typedef struct { */ setentry *table; Py_hash_t hash; /* Only used by frozenset objects */ - setentry smalltable[PySet_MINSIZE]; - Py_ssize_t finger; /* Search finger for pop() */ + + setentry smalltable[PySet_MINSIZE]; PyObject *weakreflist; /* List of weak references */ } PySetObject; |