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.
This commit is contained in:
parent
6aabb63d96
commit
cd7db76a63
|
@ -106,28 +106,6 @@ PyAPI_FUNC(int) PyBytes_AsStringAndSize(
|
||||||
strings) */
|
strings) */
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Using the current locale, insert the thousands grouping
|
|
||||||
into the string pointed to by buffer. For the argument descriptions,
|
|
||||||
see Objects/stringlib/localeutil.h */
|
|
||||||
#ifndef Py_LIMITED_API
|
|
||||||
PyAPI_FUNC(Py_ssize_t) _PyBytes_InsertThousandsGroupingLocale(char *buffer,
|
|
||||||
Py_ssize_t n_buffer,
|
|
||||||
char *digits,
|
|
||||||
Py_ssize_t n_digits,
|
|
||||||
Py_ssize_t min_width);
|
|
||||||
|
|
||||||
/* Using explicit passed-in values, insert the thousands grouping
|
|
||||||
into the string pointed to by buffer. For the argument descriptions,
|
|
||||||
see Objects/stringlib/localeutil.h */
|
|
||||||
PyAPI_FUNC(Py_ssize_t) _PyBytes_InsertThousandsGrouping(char *buffer,
|
|
||||||
Py_ssize_t n_buffer,
|
|
||||||
char *digits,
|
|
||||||
Py_ssize_t n_digits,
|
|
||||||
Py_ssize_t min_width,
|
|
||||||
const char *grouping,
|
|
||||||
const char *thousands_sep);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Flags used by string formatting */
|
/* Flags used by string formatting */
|
||||||
#define F_LJUST (1<<0)
|
#define F_LJUST (1<<0)
|
||||||
#define F_SIGN (1<<1)
|
#define F_SIGN (1<<1)
|
||||||
|
|
|
@ -32,14 +32,6 @@ PyAPI_FUNC(int) _Py_IsCoreInitialized(void);
|
||||||
|
|
||||||
PyAPI_FUNC(PyStatus) Py_InitializeFromConfig(
|
PyAPI_FUNC(PyStatus) Py_InitializeFromConfig(
|
||||||
const PyConfig *config);
|
const PyConfig *config);
|
||||||
PyAPI_FUNC(PyStatus) _Py_InitializeFromArgs(
|
|
||||||
const PyConfig *config,
|
|
||||||
Py_ssize_t argc,
|
|
||||||
char * const *argv);
|
|
||||||
PyAPI_FUNC(PyStatus) _Py_InitializeFromWideArgs(
|
|
||||||
const PyConfig *config,
|
|
||||||
Py_ssize_t argc,
|
|
||||||
wchar_t * const *argv);
|
|
||||||
PyAPI_FUNC(PyStatus) _Py_InitializeMain(void);
|
PyAPI_FUNC(PyStatus) _Py_InitializeMain(void);
|
||||||
|
|
||||||
PyAPI_FUNC(int) Py_RunMain(void);
|
PyAPI_FUNC(int) Py_RunMain(void);
|
||||||
|
|
|
@ -88,15 +88,6 @@ PyAPI_FUNC(int) _PyFloat_Pack2(double x, unsigned char *p, int le);
|
||||||
PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
|
PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
|
||||||
PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
|
PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
|
||||||
|
|
||||||
/* Needed for the old way for marshal to store a floating point number.
|
|
||||||
Returns the string length copied into p, -1 on error.
|
|
||||||
*/
|
|
||||||
PyAPI_FUNC(int) _PyFloat_Repr(double x, char *p, size_t len);
|
|
||||||
|
|
||||||
/* Used to get the important decimal digits of a double */
|
|
||||||
PyAPI_FUNC(int) _PyFloat_Digits(char *buf, double v, int *signum);
|
|
||||||
PyAPI_FUNC(void) _PyFloat_DigitsInit(void);
|
|
||||||
|
|
||||||
/* The unpack routines read 2, 4 or 8 bytes, starting at p. le is a bool
|
/* The unpack routines read 2, 4 or 8 bytes, starting at p. le is a bool
|
||||||
* argument, true if the string is in little-endian format (exponent
|
* argument, true if the string is in little-endian format (exponent
|
||||||
* last, at p+1, p+3 or p+7), false if big-endian (exponent first, at p).
|
* last, at p+1, p+3 or p+7), false if big-endian (exponent first, at p).
|
||||||
|
|
|
@ -67,10 +67,6 @@ PyFrameObject* _PyFrame_New_NoTrack(PyThreadState *, PyCodeObject *,
|
||||||
PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
|
PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
|
||||||
PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
|
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 */
|
/* Conversions between "fast locals" and locals in dictionary */
|
||||||
|
|
||||||
PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
|
PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
|
||||||
|
|
|
@ -58,8 +58,6 @@ typedef struct {
|
||||||
PyAPI_DATA(PyTypeObject) PyCoro_Type;
|
PyAPI_DATA(PyTypeObject) PyCoro_Type;
|
||||||
PyAPI_DATA(PyTypeObject) _PyCoroWrapper_Type;
|
PyAPI_DATA(PyTypeObject) _PyCoroWrapper_Type;
|
||||||
|
|
||||||
PyAPI_DATA(PyTypeObject) _PyAIterWrapper_Type;
|
|
||||||
|
|
||||||
#define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type)
|
#define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type)
|
||||||
PyObject *_PyCoro_GetAwaitableIter(PyObject *o);
|
PyObject *_PyCoro_GetAwaitableIter(PyObject *o);
|
||||||
PyAPI_FUNC(PyObject *) PyCoro_New(struct _frame *,
|
PyAPI_FUNC(PyObject *) PyCoro_New(struct _frame *,
|
||||||
|
|
|
@ -81,8 +81,6 @@ PyAPI_FUNC(int) PyImport_ImportFrozenModule(
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name /* UTF-8 encoded string */
|
||||||
);
|
);
|
||||||
|
|
||||||
PyAPI_DATA(PyTypeObject) PyNullImporter_Type;
|
|
||||||
|
|
||||||
PyAPI_FUNC(int) PyImport_AppendInittab(
|
PyAPI_FUNC(int) PyImport_AppendInittab(
|
||||||
const char *name, /* ASCII encoded string */
|
const char *name, /* ASCII encoded string */
|
||||||
PyObject* (*initfunc)(void)
|
PyObject* (*initfunc)(void)
|
||||||
|
|
|
@ -47,8 +47,6 @@ PyAPI_DATA(wchar_t*) _Py_dll_path;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern void _PyPathConfig_ClearGlobal(void);
|
extern void _PyPathConfig_ClearGlobal(void);
|
||||||
extern PyStatus _PyPathConfig_SetGlobal(
|
|
||||||
const struct _PyPathConfig *pathconfig);
|
|
||||||
|
|
||||||
extern PyStatus _PyPathConfig_Calculate(
|
extern PyStatus _PyPathConfig_Calculate(
|
||||||
_PyPathConfig *pathconfig,
|
_PyPathConfig *pathconfig,
|
||||||
|
|
|
@ -7,7 +7,6 @@ extern "C" {
|
||||||
|
|
||||||
PyAPI_DATA(PyTypeObject) PySeqIter_Type;
|
PyAPI_DATA(PyTypeObject) PySeqIter_Type;
|
||||||
PyAPI_DATA(PyTypeObject) PyCallIter_Type;
|
PyAPI_DATA(PyTypeObject) PyCallIter_Type;
|
||||||
PyAPI_DATA(PyTypeObject) PyCmpWrapper_Type;
|
|
||||||
|
|
||||||
#define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
|
#define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,6 @@ typedef struct {
|
||||||
PyAPI_DATA(PyTypeObject) PyList_Type;
|
PyAPI_DATA(PyTypeObject) PyList_Type;
|
||||||
PyAPI_DATA(PyTypeObject) PyListIter_Type;
|
PyAPI_DATA(PyTypeObject) PyListIter_Type;
|
||||||
PyAPI_DATA(PyTypeObject) PyListRevIter_Type;
|
PyAPI_DATA(PyTypeObject) PyListRevIter_Type;
|
||||||
PyAPI_DATA(PyTypeObject) PySortWrapper_Type;
|
|
||||||
|
|
||||||
#define PyList_Check(op) \
|
#define PyList_Check(op) \
|
||||||
PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
|
PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
|
||||||
|
|
|
@ -22,8 +22,6 @@ typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
|
||||||
typedef PyObject *(*_PyCFunctionFastWithKeywords) (PyObject *,
|
typedef PyObject *(*_PyCFunctionFastWithKeywords) (PyObject *,
|
||||||
PyObject *const *, Py_ssize_t,
|
PyObject *const *, Py_ssize_t,
|
||||||
PyObject *);
|
PyObject *);
|
||||||
typedef PyObject *(*PyNoArgsFunction)(PyObject *);
|
|
||||||
|
|
||||||
PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
|
PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
|
||||||
PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);
|
PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);
|
||||||
PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
|
PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#define Py_PYTHREAD_H
|
#define Py_PYTHREAD_H
|
||||||
|
|
||||||
typedef void *PyThread_type_lock;
|
typedef void *PyThread_type_lock;
|
||||||
typedef void *PyThread_type_sema;
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
Clean header files of interfaces defined but with no implementation. 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``.
|
|
@ -24,6 +24,3 @@
|
||||||
|
|
||||||
#define STRINGLIB_TOSTR PyObject_Str
|
#define STRINGLIB_TOSTR PyObject_Str
|
||||||
#define STRINGLIB_TOASCII PyObject_ASCII
|
#define STRINGLIB_TOASCII PyObject_ASCII
|
||||||
|
|
||||||
#define _Py_InsertThousandsGrouping _PyUnicode_ascii_InsertThousandsGrouping
|
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,3 @@
|
||||||
|
|
||||||
#define STRINGLIB_TOSTR PyObject_Str
|
#define STRINGLIB_TOSTR PyObject_Str
|
||||||
#define STRINGLIB_TOASCII PyObject_ASCII
|
#define STRINGLIB_TOASCII PyObject_ASCII
|
||||||
|
|
||||||
#define _Py_InsertThousandsGrouping _PyUnicode_ucs1_InsertThousandsGrouping
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,3 @@
|
||||||
|
|
||||||
#define STRINGLIB_TOSTR PyObject_Str
|
#define STRINGLIB_TOSTR PyObject_Str
|
||||||
#define STRINGLIB_TOASCII PyObject_ASCII
|
#define STRINGLIB_TOASCII PyObject_ASCII
|
||||||
|
|
||||||
#define _Py_InsertThousandsGrouping _PyUnicode_ucs2_InsertThousandsGrouping
|
|
||||||
|
|
||||||
|
|
|
@ -25,5 +25,3 @@
|
||||||
#define STRINGLIB_TOSTR PyObject_Str
|
#define STRINGLIB_TOSTR PyObject_Str
|
||||||
#define STRINGLIB_TOASCII PyObject_ASCII
|
#define STRINGLIB_TOASCII PyObject_ASCII
|
||||||
|
|
||||||
#define _Py_InsertThousandsGrouping _PyUnicode_ucs4_InsertThousandsGrouping
|
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,5 @@
|
||||||
#undef STRINGLIB_STR
|
#undef STRINGLIB_STR
|
||||||
#undef STRINGLIB_LEN
|
#undef STRINGLIB_LEN
|
||||||
#undef STRINGLIB_NEW
|
#undef STRINGLIB_NEW
|
||||||
#undef _Py_InsertThousandsGrouping
|
|
||||||
#undef STRINGLIB_IS_UNICODE
|
#undef STRINGLIB_IS_UNICODE
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue