diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-21 22:27:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-21 22:27:47 +0100 |
commit | bcda8f1d42a98d9022736dd52d855be8e220fe15 (patch) | |
tree | d340839a87b14d84adf04fceb230c0922fef0b6c /Python/hamt.c | |
parent | bpo-35189: Fix eintr_tester.py (GH-10637) (diff) | |
download | cpython-bcda8f1d42a98d9022736dd52d855be8e220fe15.tar.gz cpython-bcda8f1d42a98d9022736dd52d855be8e220fe15.tar.bz2 cpython-bcda8f1d42a98d9022736dd52d855be8e220fe15.zip |
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Move _PyObject_GC_TRACK() and _PyObject_GC_UNTRACK() from
Include/objimpl.h to Include/internal/pycore_object.h.
Diffstat (limited to 'Python/hamt.c')
-rw-r--r-- | Python/hamt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/hamt.c b/Python/hamt.c index 3fe70b40faf..d734d6ed07f 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -1,8 +1,9 @@ #include "Python.h" -#include "structmember.h" -#include "pycore_pystate.h" #include "pycore_hamt.h" +#include "pycore_object.h" +#include "pycore_pystate.h" +#include "structmember.h" /* This file provides an implemention of an immutable mapping using the |