From: Raymond Hettinger Date: Fri, 30 Jan 2015 06:00:32 +0000 (-0800) Subject: Move the set search finger before the smalltable. X-Git-Tag: v3.5.0a1~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5644126a2906c61bb40cc6d3186060c358de734;p=python Move the set search finger before the smalltable. --- diff --git a/Include/setobject.h b/Include/setobject.h index bb5316f6d2..f17bc1b035 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;