#ifndef Py_INTERNAL_FREELIST_STATE_H
#define Py_INTERNAL_FREELIST_STATE_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef Py_BUILD_CORE
# error "this header requires Py_BUILD_CORE define"
#endif
#define PyTuple_MAXSAVESIZE …
#define Py_tuple_MAXFREELIST …
#define Py_lists_MAXFREELIST …
#define Py_dicts_MAXFREELIST …
#define Py_dictkeys_MAXFREELIST …
#define Py_floats_MAXFREELIST …
#define Py_slices_MAXFREELIST …
#define Py_contexts_MAXFREELIST …
#define Py_async_gens_MAXFREELIST …
#define Py_async_gen_asends_MAXFREELIST …
#define Py_futureiters_MAXFREELIST …
#define Py_object_stack_chunks_MAXFREELIST …
#define Py_unicode_writers_MAXFREELIST …
struct _Py_freelist { … };
struct _Py_freelists { … };
#ifdef __cplusplus
}
#endif
#endif