Home | History | Annotate | Download | only in Python

Lines Matching refs:initialized

86        _PyRuntime.  However, _PyRuntime *should* be initialized with
90 static int initialized = 0;
91 if (initialized) {
94 initialized = 1;
160 return _PyRuntime.initialized;
231 (If the lock has not yet been initialized, that's equivalent to
395 "Python runtime initialized with LC_CTYPE=C (a locale with default ASCII "
589 (If the lock has not yet been initialized, that's equivalent to
671 if (_PyRuntime.initialized) {
672 return _Py_INIT_ERR("main interpreter already initialized");
675 return _Py_INIT_ERR("runtime core already initialized");
824 /* Only when we get here is the runtime core fully initialized */
895 * initialized or without a valid current thread state is a fatal error.
906 return _Py_INIT_ERR("runtime core not initialized");
914 if (_PyRuntime.initialized) {
924 _PyRuntime.initialized = 1;
984 _PyRuntime.initialized = 1;
1028 if (_PyRuntime.initialized) {
1126 if (!_PyRuntime.initialized)
1162 _PyRuntime.initialized = 0;
1177 * XXX longer believes it's initialized.
1178 * XXX Fatal Python error: Interpreter not initialized (version mismatch?)
1361 if (!_PyRuntime.initialized) {
1588 * be set if __main__ gets further initialized later in the startup