diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-19 20:29:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-19 20:29:35 (GMT) |
commit | e67f48ce5e7ad122b17e23b2705bf66cff76d42b (patch) | |
tree | e833621d743bfe9a83fb90e28f3b24f1a9829a45 /Include/pythonrun.h | |
parent | 0006aacb9dda6d62013c86aac47d977b3f04921a (diff) | |
download | cpython-e67f48ce5e7ad122b17e23b2705bf66cff76d42b.zip cpython-e67f48ce5e7ad122b17e23b2705bf66cff76d42b.tar.gz cpython-e67f48ce5e7ad122b17e23b2705bf66cff76d42b.tar.bz2 |
Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h.
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index e5620ee..4d24b2d 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -30,6 +30,9 @@ PyAPI_FUNC(wchar_t *) Py_GetPythonHome(void); PyAPI_FUNC(void) Py_Initialize(void); PyAPI_FUNC(void) Py_InitializeEx(int); +#ifndef Py_LIMITED_API +PyAPI_FUNC(void) _Py_InitializeEx_Private(int, int); +#endif PyAPI_FUNC(void) Py_Finalize(void); PyAPI_FUNC(int) Py_IsInitialized(void); PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void); |