#ifndef Py_INTERNAL_GLOBAL_OBJECTS_H
#define Py_INTERNAL_GLOBAL_OBJECTS_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef Py_BUILD_CORE
# error "this header requires Py_BUILD_CORE define"
#endif
#include "pycore_context.h"
#include "pycore_gc.h"
#include "pycore_global_strings.h"
#include "pycore_hamt.h"
#include "pycore_hashtable.h"
#include "pycore_typeobject.h"
#define _PY_NSMALLPOSINTS …
#define _PY_NSMALLNEGINTS …
#define _Py_GLOBAL_OBJECT(NAME) …
#define _Py_SINGLETON(NAME) …
struct _Py_cached_objects { … };
struct _Py_static_objects { … };
#define _Py_INTERP_CACHED_OBJECT(interp, NAME) …
struct _Py_interp_cached_objects { … };
#define _Py_INTERP_STATIC_OBJECT(interp, NAME) …
#define _Py_INTERP_SINGLETON(interp, NAME) …
struct _Py_interp_static_objects { … };
#ifdef __cplusplus
}
#endif
#endif