From: Nick Coghlan Date: Thu, 17 Oct 2013 13:27:17 +0000 (+1000) Subject: Issue #16129: Move Py_SetStandardStreamEncoding declaration X-Git-Tag: v3.4.0a4~83^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0f074f398f235c2075d1f57b766ff3e59b6fb43;p=python Issue #16129: Move Py_SetStandardStreamEncoding declaration --- diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 70c412be1b..4cc4dcd07a 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -28,6 +28,9 @@ PyAPI_FUNC(wchar_t *) Py_GetProgramName(void); PyAPI_FUNC(void) Py_SetPythonHome(wchar_t *); PyAPI_FUNC(wchar_t *) Py_GetPythonHome(void); +PyAPI_FUNC(int) Py_SetStandardStreamEncoding(const char *encoding, + const char *errors); + PyAPI_FUNC(void) Py_Initialize(void); PyAPI_FUNC(void) Py_InitializeEx(int); #ifndef Py_LIMITED_API @@ -38,8 +41,6 @@ PyAPI_FUNC(int) Py_IsInitialized(void); PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void); PyAPI_FUNC(void) Py_EndInterpreter(PyThreadState *); -PyAPI_FUNC(int) Py_SetStandardStreamEncoding(const char *encoding, const char *errors); - #ifndef Py_LIMITED_API PyAPI_FUNC(int) PyRun_SimpleStringFlags(const char *, PyCompilerFlags *); PyAPI_FUNC(int) PyRun_AnyFileFlags(FILE *, const char *, PyCompilerFlags *);