Skip to content

Commit 0b7585f

Browse files
committed
Fix gc_free_threading.c
1 parent 0d60edb commit 0b7585f

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

Python/gc_free_threading.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22
#include "Python.h"
33
#include "pycore_brc.h" // struct _brc_thread_state
44
#include "pycore_ceval.h" // _Py_set_eval_breaker_bit()
5-
#include "pycore_context.h"
65
#include "pycore_dict.h" // _PyInlineValuesSize()
6+
#include "pycore_frame.h" // FRAME_CLEARED
77
#include "pycore_freelist.h" // _PyObject_ClearFreeLists()
8-
#include "pycore_initconfig.h"
8+
#include "pycore_initconfig.h" // _PyStatus_NO_MEMORY()
99
#include "pycore_interp.h" // PyInterpreterState.gc
10-
#include "pycore_object.h"
1110
#include "pycore_object_alloc.h" // _PyObject_MallocWithType()
12-
#include "pycore_object_stack.h"
13-
#include "pycore_pyerrors.h"
1411
#include "pycore_pystate.h" // _PyThreadState_GET()
1512
#include "pycore_tstate.h" // _PyThreadStateImpl
1613
#include "pycore_weakref.h" // _PyWeakref_ClearRef()
14+
1715
#include "pydtrace.h"
18-
#include "pycore_uniqueid.h" // _PyObject_MergeThreadLocalRefcounts()
1916

2017

2118
// enable the "mark alive" pass of GC

0 commit comments

Comments
 (0)