commit | 384621c42f9102e31ba2c47feba144af09c989e5 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Mon Jun 22 17:27:35 2020 +0200 |
committer | GitHub <noreply@github.com> | Mon Jun 22 17:27:35 2020 +0200 |
tree | 07a92a8cdeb0234d18c392d503780255ccca81ad | |
parent | 9e27bc0c1efc7478872f98729f87886e9333548f [diff] [blame] |
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 3f2f716..3809dc3 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c
@@ -1,7 +1,7 @@ #define PY_SSIZE_T_CLEAN #include "Python.h" -#include "pycore_tupleobject.h" +#include "pycore_tuple.h" // _PyTuple_ITEMS() #include <stddef.h> // offsetof() /* Itertools module written and maintained