mirror of
https://github.com/python/cpython.git
synced 2025-10-29 09:29:26 +00:00
Remove the following old functions to configure the Python initialization, deprecated in Python 3.11: * PySys_AddWarnOptionUnicode() * PySys_AddWarnOption() * PySys_AddXOption() * PySys_HasWarnOptions() * PySys_SetArgvEx() * PySys_SetArgv() * PySys_SetPath() * Py_SetPath() * Py_SetProgramName() * Py_SetPythonHome() * Py_SetStandardStreamEncoding() * _Py_SetProgramFullPath() Most of these functions are kept in the stable ABI, except: * Py_SetStandardStreamEncoding() * _Py_SetProgramFullPath() Update Doc/extending/embedding.rst and Doc/extending/extending.rst to use the new PyConfig API. _testembed.c: * check_stdio_details() now sets stdio_encoding and stdio_errors of PyConfig. * Add definitions of functions removed from the API but kept in the stable ABI. * test_init_from_config() and test_init_read_set() now use PyConfig_SetString() instead of PyConfig_SetBytesString(). Remove _Py_ClearStandardStreamEncoding() internal function.
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
|
|
/* System module interface */
|
|
|
|
#ifndef Py_SYSMODULE_H
|
|
#define Py_SYSMODULE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
PyAPI_FUNC(PyObject *) PySys_GetObject(const char *);
|
|
PyAPI_FUNC(int) PySys_SetObject(const char *, PyObject *);
|
|
|
|
PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
|
|
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
|
|
PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
|
|
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
|
|
PyAPI_FUNC(void) PySys_FormatStdout(const char *format, ...);
|
|
PyAPI_FUNC(void) PySys_FormatStderr(const char *format, ...);
|
|
|
|
PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
|
|
|
|
PyAPI_FUNC(PyObject *) PySys_GetXOptions(void);
|
|
|
|
#if !defined(Py_LIMITED_API)
|
|
typedef struct {
|
|
FILE* perf_map;
|
|
PyThread_type_lock map_lock;
|
|
} PerfMapState;
|
|
|
|
PyAPI_FUNC(int) PyUnstable_PerfMapState_Init(void);
|
|
|
|
PyAPI_FUNC(int) PyUnstable_WritePerfMapEntry(const void *code_addr, unsigned int code_size, const char *entry_name);
|
|
|
|
PyAPI_FUNC(void) PyUnstable_PerfMapState_Fini(void);
|
|
#endif
|
|
|
|
#ifndef Py_LIMITED_API
|
|
# define Py_CPYTHON_SYSMODULE_H
|
|
# include "cpython/sysmodule.h"
|
|
# undef Py_CPYTHON_SYSMODULE_H
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_SYSMODULE_H */
|