no return value; it is a fatal error if the initialization fails.
\end{cfuncdesc}
+\begin{cfuncdesc}{void}{Py_InitializeEx}{int initsigs}
+ This function works like \cfunction{Py_Initialize} if
+ \var{initsigs} is 1. If \var{initsigs} is 0, it skips
+ initialization registration of signal handlers, which
+ might be useful when Python is embedded. \versionadded{2.4}
+\end{cfuncdesc}
+
\begin{cfuncdesc}{int}{Py_IsInitialized}{}
Return true (nonzero) when the Python interpreter has been
initialized, false (zero) if not. After \cfunction{Py_Finalize()}
PyAPI_FUNC(char *) Py_GetPythonHome(void);
PyAPI_FUNC(void) Py_Initialize(void);
+PyAPI_FUNC(void) Py_InitializeEx(int);
PyAPI_FUNC(void) Py_Finalize(void);
PyAPI_FUNC(int) Py_IsInitialized(void);
PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void);
Core and builtins
-----------------
+- Py_InitializeEx has been added.
+
- Fix the order of application of decorators. The proper order is bottom-up;
the first decorator listed is the last one called.
}
void
-Py_Initialize(void)
+Py_InitializeEx(int install_sigs)
{
PyInterpreterState *interp;
PyThreadState *tstate;
_PyImportHooks_Init();
- initsigs(); /* Signal handling stuff, including initintr() */
+ if (install_sigs)
+ initsigs(); /* Signal handling stuff, including initintr() */
initmain(); /* Module __main__ */
if (!Py_NoSiteFlag)
#endif
}
+void
+Py_Initialize(void)
+{
+ Py_InitializeEx(1);
+}
+
+
#ifdef COUNT_ALLOCS
extern void dump_counts(void);
#endif