summaryrefslogtreecommitdiffstats
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-01-18 03:14:59 (GMT)
committerGitHub <noreply@github.com>2020-01-18 03:14:59 (GMT)
commitcd7db76a636c218b2d81d3526eb435cfae61f212 (patch)
tree282471f1c269d9155a764960769347a9871b711e /Include/frameobject.h
parent6aabb63d96845b3cb207d28d40bf0b78e171be75 (diff)
downloadcpython-cd7db76a636c218b2d81d3526eb435cfae61f212.zip
cpython-cd7db76a636c218b2d81d3526eb435cfae61f212.tar.gz
cpython-cd7db76a636c218b2d81d3526eb435cfae61f212.tar.bz2
bpo-39372: Clean header files of declared interfaces with no implementations (GH-18037)
The public API symbols being removed are: _PyBytes_InsertThousandsGroupingLocale, _PyBytes_InsertThousandsGrouping, _Py_InitializeFromArgs, _Py_InitializeFromWideArgs, _PyFloat_Repr, _PyFloat_Digits, _PyFloat_DigitsInit, PyFrame_ExtendStack, _PyAIterWrapper_Type, PyNullImporter_Type, PyCmpWrapper_Type, PySortWrapper_Type, PyNoArgsFunction.
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r--Include/frameobject.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index 3bad86a..ddcf159 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -67,10 +67,6 @@ PyFrameObject* _PyFrame_New_NoTrack(PyThreadState *, PyCodeObject *,
PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
-/* Extend the value stack */
-
-PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
-
/* Conversions between "fast locals" and locals in dictionary */
PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);