summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2019-02-25 21:37:26 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-02-25 21:37:26 (GMT)
commitf1b9abe35f75393351b3d954a392122a3f8f6951 (patch)
treecded6dbaa12d51478f71b9604c24910542799c5c /Include/cpython
parentb5853e2650606781451925b733a40aec8dd7d365 (diff)
downloadcpython-f1b9abe35f75393351b3d954a392122a3f8f6951.zip
cpython-f1b9abe35f75393351b3d954a392122a3f8f6951.tar.gz
cpython-f1b9abe35f75393351b3d954a392122a3f8f6951.tar.bz2
bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)
Diffstat (limited to 'Include/cpython')
-rw-r--r--Include/cpython/abstract.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Include/cpython/abstract.h b/Include/cpython/abstract.h
index 0e00265..991bea14 100644
--- a/Include/cpython/abstract.h
+++ b/Include/cpython/abstract.h
@@ -12,16 +12,6 @@ extern "C" {
# define _PyObject_CallMethodId _PyObject_CallMethodId_SizeT
#endif
-PyAPI_FUNC(PyObject*) _PyStack_AsTuple(
- PyObject *const *stack,
- Py_ssize_t nargs);
-
-PyAPI_FUNC(PyObject*) _PyStack_AsTupleSlice(
- PyObject *const *stack,
- Py_ssize_t nargs,
- Py_ssize_t start,
- Py_ssize_t end);
-
/* Convert keyword arguments from the FASTCALL (stack: C array, kwnames: tuple)
format to a Python dictionary ("kwargs" dict).