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 /Objects/stringlib | |
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 'Objects/stringlib')
-rw-r--r-- | Objects/stringlib/asciilib.h | 3 | ||||
-rw-r--r-- | Objects/stringlib/ucs1lib.h | 4 | ||||
-rw-r--r-- | Objects/stringlib/ucs2lib.h | 3 | ||||
-rw-r--r-- | Objects/stringlib/ucs4lib.h | 2 | ||||
-rw-r--r-- | Objects/stringlib/undef.h | 1 |
5 files changed, 0 insertions, 13 deletions
diff --git a/Objects/stringlib/asciilib.h b/Objects/stringlib/asciilib.h index d0fc18d..e955526 100644 --- a/Objects/stringlib/asciilib.h +++ b/Objects/stringlib/asciilib.h @@ -24,6 +24,3 @@ #define STRINGLIB_TOSTR PyObject_Str #define STRINGLIB_TOASCII PyObject_ASCII - -#define _Py_InsertThousandsGrouping _PyUnicode_ascii_InsertThousandsGrouping - diff --git a/Objects/stringlib/ucs1lib.h b/Objects/stringlib/ucs1lib.h index ce1eb57..bc4b104 100644 --- a/Objects/stringlib/ucs1lib.h +++ b/Objects/stringlib/ucs1lib.h @@ -24,7 +24,3 @@ #define STRINGLIB_TOSTR PyObject_Str #define STRINGLIB_TOASCII PyObject_ASCII - -#define _Py_InsertThousandsGrouping _PyUnicode_ucs1_InsertThousandsGrouping - - diff --git a/Objects/stringlib/ucs2lib.h b/Objects/stringlib/ucs2lib.h index f900cb6..86a1dff 100644 --- a/Objects/stringlib/ucs2lib.h +++ b/Objects/stringlib/ucs2lib.h @@ -24,6 +24,3 @@ #define STRINGLIB_TOSTR PyObject_Str #define STRINGLIB_TOASCII PyObject_ASCII - -#define _Py_InsertThousandsGrouping _PyUnicode_ucs2_InsertThousandsGrouping - diff --git a/Objects/stringlib/ucs4lib.h b/Objects/stringlib/ucs4lib.h index 86a480f..3c32a93 100644 --- a/Objects/stringlib/ucs4lib.h +++ b/Objects/stringlib/ucs4lib.h @@ -25,5 +25,3 @@ #define STRINGLIB_TOSTR PyObject_Str #define STRINGLIB_TOASCII PyObject_ASCII -#define _Py_InsertThousandsGrouping _PyUnicode_ucs4_InsertThousandsGrouping - diff --git a/Objects/stringlib/undef.h b/Objects/stringlib/undef.h index f9d3f1d..c41e254 100644 --- a/Objects/stringlib/undef.h +++ b/Objects/stringlib/undef.h @@ -6,6 +6,5 @@ #undef STRINGLIB_STR #undef STRINGLIB_LEN #undef STRINGLIB_NEW -#undef _Py_InsertThousandsGrouping #undef STRINGLIB_IS_UNICODE |