Skip to content

Commit

Permalink
Make "struct _Py_dict_state" a little more compact.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Nov 16, 2022
1 parent ba9e889 commit f684dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/internal/pycore_dict_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ struct _Py_dict_state {
#if PyDict_MAXFREELIST > 0
/* Dictionary reuse scheme to save calls to malloc and free */
PyDictObject *free_list[PyDict_MAXFREELIST];
int numfree;
PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST];
int numfree;
int keys_numfree;
#endif
PyDict_WatchCallback watchers[DICT_MAX_WATCHERS];
Expand Down

0 comments on commit f684dcd

Please sign in to comment.