summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_tupleobject.h
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 /Include/internal/pycore_tupleobject.h
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 'Include/internal/pycore_tupleobject.h')
-rw-r--r--Include/internal/pycore_tupleobject.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/Include/internal/pycore_tupleobject.h b/Include/internal/pycore_tupleobject.h
deleted file mode 100644
index f95f16c..0000000
--- a/Include/internal/pycore_tupleobject.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef Py_INTERNAL_TUPLEOBJECT_H
-#define Py_INTERNAL_TUPLEOBJECT_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef Py_BUILD_CORE
-# error "this header requires Py_BUILD_CORE define"
-#endif
-
-#include "tupleobject.h" /* _PyTuple_CAST() */
-
-#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
-PyAPI_FUNC(PyObject *) _PyTuple_FromArray(PyObject *const *, Py_ssize_t);
-
-#ifdef __cplusplus
-}
-#endif
-#endif /* !Py_INTERNAL_TUPLEOBJECT_H */