mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Move the set search finger before the smalltable.
This commit is contained in:
parent
c84d167733
commit
c5644126a2
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue