diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Objects/object.c b/Objects/object.c index 4eff24bc3a9..ecc5a86901a 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -6,29 +6,28 @@ #include "pycore_call.h" // _PyObject_CallNoArgs() #include "pycore_ceval.h" // _Py_EnterRecursiveCallTstate() #include "pycore_context.h" // _PyContextTokenMissing_Type -#include "pycore_critical_section.h" // Py_BEGIN_CRITICAL_SECTION, Py_END_CRITICAL_SECTION +#include "pycore_critical_section.h" // Py_BEGIN_CRITICAL_SECTION #include "pycore_descrobject.h" // _PyMethodWrapper_Type -#include "pycore_dict.h" // _PyObject_MakeDictFromInstanceAttributes() +#include "pycore_dict.h" // _PyObject_MaterializeManagedDict() #include "pycore_floatobject.h" // _PyFloat_DebugMallocStats() #include "pycore_freelist.h" // _PyObject_ClearFreeLists() +#include "pycore_genobject.h" // _PyAsyncGenAThrow_Type #include "pycore_hamt.h" // _PyHamtItems_Type -#include "pycore_hashtable.h" // _Py_hashtable_new() -#include "pycore_initconfig.h" // _PyStatus_EXCEPTION() +#include "pycore_initconfig.h" // _PyStatus_OK() #include "pycore_instruction_sequence.h" // _PyInstructionSequence_Type #include "pycore_list.h" // _PyList_DebugMallocStats() #include "pycore_long.h" // _PyLong_GetZero() #include "pycore_memoryobject.h" // _PyManagedBuffer_Type #include "pycore_namespace.h" // _PyNamespace_Type -#include "pycore_object.h" // PyAPI_DATA() _Py_SwappedOp definition -#include "pycore_object_state.h" // struct _reftracer_runtime_state -#include "pycore_optimizer.h" // _PyUOpExecutor_Type, ... +#include "pycore_object.h" // export _Py_SwappedOp +#include "pycore_optimizer.h" // _PyUOpExecutor_Type #include "pycore_pyerrors.h" // _PyErr_Occurred() #include "pycore_pymem.h" // _PyMem_IsPtrFreed() #include "pycore_pystate.h" // _PyThreadState_GET() #include "pycore_symtable.h" // PySTEntry_Type #include "pycore_tuple.h" // _PyTuple_DebugMallocStats() #include "pycore_typeobject.h" // _PyBufferWrapper_Type -#include "pycore_typevarobject.h" // _PyTypeAlias_Type, _Py_initialize_generic +#include "pycore_typevarobject.h" // _PyTypeAlias_Type #include "pycore_unionobject.h" // _PyUnion_Type |