Kaydet (Commit) c5644126 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Move the set search finger before the smalltable.

üst c84d1677
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment