diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-01-18 03:14:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-18 03:14:59 (GMT) |
commit | cd7db76a636c218b2d81d3526eb435cfae61f212 (patch) | |
tree | 282471f1c269d9155a764960769347a9871b711e /Include/listobject.h | |
parent | 6aabb63d96845b3cb207d28d40bf0b78e171be75 (diff) | |
download | cpython-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/listobject.h')
-rw-r--r-- | Include/listobject.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 6057279..baf9415 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -43,7 +43,6 @@ typedef struct { PyAPI_DATA(PyTypeObject) PyList_Type; PyAPI_DATA(PyTypeObject) PyListIter_Type; PyAPI_DATA(PyTypeObject) PyListRevIter_Type; -PyAPI_DATA(PyTypeObject) PySortWrapper_Type; #define PyList_Check(op) \ PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS) |