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 /Python/getargs.c | |
parent | 9e27bc0c1efc7478872f98729f87886e9333548f (diff) | |
download | cpython-384621c42f9102e31ba2c47feba144af09c989e5.tar.gz cpython-384621c42f9102e31ba2c47feba144af09c989e5.zip |
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index aaf687a46b7..c85ff6d4777 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -2,7 +2,7 @@ /* New getargs implementation */ #include "Python.h" -#include "pycore_tupleobject.h" +#include "pycore_tuple.h" // _PyTuple_ITEMS() #include <ctype.h> #include <float.h> |