mirror of
https://github.com/python/cpython.git
synced 2024-11-25 02:44:06 +08:00
9ca9c25bcd
encoding and surrogateespace error handler instead of the locale encoding to be consistent with os.environ. Add PySys_AddWarnOptionUnicode() function.
31 lines
865 B
C
31 lines
865 B
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_SetArgv(int, wchar_t **);
|
|
PyAPI_FUNC(void) PySys_SetPath(const wchar_t *);
|
|
|
|
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_DATA(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
|
|
|
|
PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
|
|
PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *);
|
|
PyAPI_FUNC(void) PySys_AddWarnOptionUnicode(PyObject *);
|
|
PyAPI_FUNC(int) PySys_HasWarnOptions(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_SYSMODULE_H */
|