diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-14 16:30:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 16:30:41 (GMT) |
commit | e560f90602870601945ea7a4f7770827608817d2 (patch) | |
tree | eb66be613aff34e1450653b455fb9d81689c1429 /Modules/_tracemalloc.c | |
parent | 4cf65a630a8d45bad3fe5cdc4c2632ec64e7ba27 (diff) | |
download | cpython-e560f90602870601945ea7a4f7770827608817d2.zip cpython-e560f90602870601945ea7a4f7770827608817d2.tar.gz cpython-e560f90602870601945ea7a4f7770827608817d2.tar.bz2 |
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r-- | Modules/_tracemalloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index bef44db..6f3f31a 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -1,5 +1,6 @@ #include "Python.h" -#include "pycore_pymem.h" +#include "pycore_gc.h" // PyGC_Head +#include "pycore_pymem.h" // _Py_tracemalloc_config #include "pycore_traceback.h" #include "hashtable.h" #include "frameobject.h" |