diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-22 15:27:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 15:27:35 (GMT) |
commit | 384621c42f9102e31ba2c47feba144af09c989e5 (patch) | |
tree | 07a92a8cdeb0234d18c392d503780255ccca81ad /Objects/structseq.c | |
parent | 9e27bc0c1efc7478872f98729f87886e9333548f (diff) | |
download | cpython-384621c42f9102e31ba2c47feba144af09c989e5.zip cpython-384621c42f9102e31ba2c47feba144af09c989e5.tar.gz cpython-384621c42f9102e31ba2c47feba144af09c989e5.tar.bz2 |
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Diffstat (limited to 'Objects/structseq.c')
-rw-r--r-- | Objects/structseq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/structseq.c b/Objects/structseq.c index b17b1f9..bd20ce3 100644 --- a/Objects/structseq.c +++ b/Objects/structseq.c @@ -8,8 +8,8 @@ */ #include "Python.h" -#include "pycore_tupleobject.h" -#include "pycore_object.h" +#include "pycore_tuple.h" // _PyTuple_FromArray() +#include "pycore_object.h" // _PyObject_GC_TRACK() #include "structmember.h" // PyMemberDef static const char visible_length_key[] = "n_sequence_fields"; |