summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-06-22 15:27:35 (GMT)
committerGitHub <noreply@github.com>2020-06-22 15:27:35 (GMT)
commit384621c42f9102e31ba2c47feba144af09c989e5 (patch)
tree07a92a8cdeb0234d18c392d503780255ccca81ad /Python/bltinmodule.c
parent9e27bc0c1efc7478872f98729f87886e9333548f (diff)
downloadcpython-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 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index c6ede1c..a582ccd 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -4,10 +4,9 @@
#include <ctype.h>
#include "ast.h"
#undef Yield /* undefine macro conflicting with <winbase.h> */
-#include "pycore_object.h"
-#include "pycore_pyerrors.h"
-#include "pycore_pystate.h" // _PyThreadState_GET()
-#include "pycore_tupleobject.h"
+#include "pycore_pyerrors.h" // _PyErr_NoMemory()
+#include "pycore_pystate.h" // _PyThreadState_GET()
+#include "pycore_tuple.h" // _PyTuple_FromArray()
_Py_IDENTIFIER(__builtins__);
_Py_IDENTIFIER(__dict__);