Move the set search finger before the smalltable.

This commit is contained in:
Raymond Hettinger 2015-01-29 22:00:32 -08:00
parent c84d167733
commit c5644126a2
1 changed files with 2 additions and 2 deletions

View File

@ -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;