diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-22 17:27:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 17:27:35 +0200 |
commit | 384621c42f9102e31ba2c47feba144af09c989e5 (patch) | |
tree | 07a92a8cdeb0234d18c392d503780255ccca81ad /Objects/codeobject.c | |
parent | 9e27bc0c1efc7478872f98729f87886e9333548f (diff) | |
download | cpython-git-384621c42f9102e31ba2c47feba144af09c989e5.tar.gz |
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r-- | Objects/codeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index cb4fb68124..49011db101 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -4,10 +4,10 @@ #include "code.h" #include "opcode.h" #include "structmember.h" // PyMemberDef -#include "pycore_code.h" +#include "pycore_code.h" // _PyOpcache #include "pycore_interp.h" // PyInterpreterState.co_extra_freefuncs #include "pycore_pystate.h" // _PyInterpreterState_GET() -#include "pycore_tupleobject.h" +#include "pycore_tuple.h" // _PyTuple_ITEMS() #include "clinic/codeobject.c.h" /* Holder for co_extra information */ |