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/_functoolsmodule.c b/Modules/_functoolsmodule.c index f1ee23f..8120140 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c
@@ -1,6 +1,6 @@ #include "Python.h" #include "pycore_pystate.h" // _PyThreadState_GET() -#include "pycore_tupleobject.h" +#include "pycore_tuple.h" // _PyTuple_ITEMS() #include "structmember.h" // PyMemberDef /* _functools module written and maintained