File tree 9 files changed +10
-3
lines changed
9 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,16 @@ extern "C" {
19
19
#include "pycore_dict_state.h" // struct _Py_dict_state
20
20
#include "pycore_dtoa.h" // struct _dtoa_state
21
21
#include "pycore_exceptions.h" // struct _Py_exc_state
22
- #include "pycore_floatobject.h" // struct _Py_float_state
23
22
#include "pycore_function.h" // FUNC_MAX_WATCHERS
24
23
#include "pycore_gc.h" // struct _gc_runtime_state
25
24
#include "pycore_genobject.h" // struct _Py_async_gen_state
26
25
#include "pycore_global_objects.h" // struct _Py_interp_cached_objects
27
26
#include "pycore_import.h" // struct _import_state
28
27
#include "pycore_instruments.h" // _PY_MONITORING_EVENTS
29
- #include "pycore_list.h" // struct _Py_list_state
30
28
#include "pycore_mimalloc.h" // struct _mimalloc_interp_state
31
29
#include "pycore_object_state.h" // struct _py_object_state
32
30
#include "pycore_obmalloc.h" // struct _obmalloc_state
33
31
#include "pycore_tstate.h" // _PyThreadStateImpl
34
- #include "pycore_tuple.h" // struct _Py_tuple_state
35
32
#include "pycore_typeobject.h" // struct types_state
36
33
#include "pycore_unicodeobject.h" // struct _Py_unicode_state
37
34
#include "pycore_warnings.h" // struct _warnings_runtime_state
Original file line number Diff line number Diff line change 7
7
#include "pycore_ceval.h" // _Py_EnterRecursiveCallTstate()
8
8
#include "pycore_crossinterp.h" // _Py_CallInInterpreter()
9
9
#include "pycore_object.h" // _Py_CheckSlotResult()
10
+ #include "pycore_list.h" // _PyList_Extend()
10
11
#include "pycore_long.h" // _Py_IsNegative
11
12
#include "pycore_pyerrors.h" // _PyErr_Occurred()
12
13
#include "pycore_pystate.h" // _PyThreadState_GET()
Original file line number Diff line number Diff line change 11
11
#include "pycore_floatobject.h" // _PyFloat_DebugMallocStats()
12
12
#include "pycore_initconfig.h" // _PyStatus_EXCEPTION()
13
13
#include "pycore_hashtable.h" // _Py_hashtable_new()
14
+ #include "pycore_list.h" // _PyList_DebugMallocStats()
14
15
#include "pycore_memoryobject.h" // _PyManagedBuffer_Type
15
16
#include "pycore_namespace.h" // _PyNamespace_Type
16
17
#include "pycore_object.h" // PyAPI_DATA() _Py_SwappedOp definition
17
18
#include "pycore_optimizer.h" // _PyUOpExecutor_Type, _PyUOpOptimizer_Type, ...
18
19
#include "pycore_pyerrors.h" // _PyErr_Occurred()
19
20
#include "pycore_pymem.h" // _PyMem_IsPtrFreed()
20
21
#include "pycore_pystate.h" // _PyThreadState_GET()
22
+ #include "pycore_tuple.h" // _PyTuple_DebugMallocStats()
21
23
#include "pycore_symtable.h" // PySTEntry_Type
22
24
#include "pycore_typeobject.h" // _PyBufferWrapper_Type
23
25
#include "pycore_typevarobject.h" // _PyTypeAlias_Type, _Py_initialize_generic
Original file line number Diff line number Diff line change 6
6
#include "pycore_ceval.h" // _PyEval_GetBuiltin()
7
7
#include "pycore_gc.h" // _PyObject_GC_IS_TRACKED()
8
8
#include "pycore_initconfig.h" // _PyStatus_OK()
9
+ #include "pycore_list.h" // _Py_memory_repeat()
9
10
#include "pycore_modsupport.h" // _PyArg_NoKwnames()
10
11
#include "pycore_object.h" // _PyObject_GC_TRACK(), _Py_FatalRefcountError(), _PyDebugAllocatorStats()
12
+ #include "pycore_tuple.h" // _PyTupleIterObject
11
13
12
14
/*[clinic input]
13
15
class tuple "PyTupleObject *" "&PyTuple_Type"
Original file line number Diff line number Diff line change 12
12
#include "pycore_instruments.h"
13
13
#include "pycore_intrinsics.h"
14
14
#include "pycore_jit.h"
15
+ #include "pycore_list.h" // _PyTuple_FromArraySteal()
15
16
#include "pycore_long.h" // _PyLong_GetZero()
16
17
#include "pycore_moduleobject.h" // PyModuleObject
17
18
#include "pycore_object.h" // _PyObject_GC_TRACK()
Original file line number Diff line number Diff line change 12
12
#include "pycore_object_alloc.h" // _PyObject_MallocWithType()
13
13
#include "pycore_pyerrors.h"
14
14
#include "pycore_pystate.h" // _PyThreadState_GET()
15
+ #include "pycore_tuple.h" // _PyTuple_MaybeUntrack()
15
16
#include "pycore_weakref.h" // _PyWeakref_ClearRef()
16
17
#include "pydtrace.h"
17
18
Original file line number Diff line number Diff line change 11
11
#include "pycore_object_stack.h"
12
12
#include "pycore_pyerrors.h"
13
13
#include "pycore_pystate.h" // _PyThreadState_GET()
14
+ #include "pycore_tuple.h" // _PyTuple_MaybeUntrack
14
15
#include "pycore_tstate.h" // _PyThreadStateImpl
15
16
#include "pycore_weakref.h" // _PyWeakref_ClearRef()
16
17
#include "pydtrace.h"
Original file line number Diff line number Diff line change 10
10
#include "pycore_pyerrors.h" // _PyErr_SetString()
11
11
#include "pycore_runtime.h" // _Py_ID()
12
12
#include "pycore_sysmodule.h" // _PySys_GetAttr()
13
+ #include "pycore_tuple.h" // _PyTuple_FromArray()
13
14
#include "pycore_typevarobject.h" // _Py_make_typevar()
14
15
15
16
Original file line number Diff line number Diff line change 6
6
#include "pycore_opcode_utils.h" // MAX_REAL_OPCODE
7
7
#include "pycore_optimizer.h" // _Py_uop_analyze_and_optimize()
8
8
#include "pycore_pystate.h" // _PyInterpreterState_GET()
9
+ #include "pycore_tuple.h" // _PyTuple_FromArraySteal()
9
10
#include "pycore_uop_ids.h"
10
11
#include "pycore_jit.h"
11
12
#include "cpython/optimizer.h"
You can’t perform that action at this time.
0 commit comments