summaryrefslogtreecommitdiff
path: root/Include/setobject.h
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-01-29 22:00:32 -0800
committerRaymond Hettinger <python@rcn.com>2015-01-29 22:00:32 -0800
commitc5644126a2906c61bb40cc6d3186060c358de734 (patch)
tree5be5f983d8f522ca7d95e4a4dede16e4f5ebbb34 /Include/setobject.h
parentc84d167733efd33b54818b1f334c579cf7c8e548 (diff)
downloadcpython-git-c5644126a2906c61bb40cc6d3186060c358de734.tar.gz
Move the set search finger before the smalltable.
Diffstat (limited to 'Include/setobject.h')
-rw-r--r--Include/setobject.h4
1 files 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;