commit | 91496a08d4cb0b185fed53692cd9f36c76de9725 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jan 29 22:02:17 2015 -0800 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jan 29 22:02:17 2015 -0800 |
tree | fd54565fa983af81617e85c276a92ca768a79240 | |
parent | c5644126a2906c61bb40cc6d3186060c358de734 [diff] | |
parent | 6ef0285aec5bd4c6252d975dceeac1201bcc181d [diff] |
merge
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 @@ */ 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;