aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-06-22 17:27:35 +0200
committerGitHub <noreply@github.com>2020-06-22 17:27:35 +0200
commit384621c42f9102e31ba2c47feba144af09c989e5 (patch)
tree07a92a8cdeb0234d18c392d503780255ccca81ad /Objects/listobject.c
parent9e27bc0c1efc7478872f98729f87886e9333548f (diff)
downloadcpython-384621c42f9102e31ba2c47feba144af09c989e5.tar.gz
cpython-384621c42f9102e31ba2c47feba144af09c989e5.zip
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 22cdbe3cfdd..261a0fdfffa 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -1,10 +1,10 @@
/* List object implementation */
#include "Python.h"
-#include "pycore_abstract.h" // _PyIndex_Check()
-#include "pycore_object.h"
-#include "pycore_tupleobject.h"
-#include "pycore_accu.h"
+#include "pycore_abstract.h" // _PyIndex_Check()
+#include "pycore_interp.h" // PyInterpreterState.list
+#include "pycore_object.h" // _PyObject_GC_TRACK()
+#include "pycore_tuple.h" // _PyTuple_FromArray()
#ifdef STDC_HEADERS
#include <stddef.h>