Skip to content

Commit f684dcd

Browse files
Make "struct _Py_dict_state" a little more compact.
1 parent ba9e889 commit f684dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_dict_state.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ struct _Py_dict_state {
3333
#if PyDict_MAXFREELIST > 0
3434
/* Dictionary reuse scheme to save calls to malloc and free */
3535
PyDictObject *free_list[PyDict_MAXFREELIST];
36-
int numfree;
3736
PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST];
37+
int numfree;
3838
int keys_numfree;
3939
#endif
4040
PyDict_WatchCallback watchers[DICT_MAX_WATCHERS];

0 commit comments

Comments
 (0)