From c5644126a2906c61bb40cc6d3186060c358de734 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 29 Jan 2015 22:00:32 -0800 Subject: [PATCH] Move the set search finger before the smalltable. --- Include/setobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1