diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-12 14:14:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 14:14:13 (GMT) |
commit | ef75a625cdf8377d687a04948b4db9bc1917bf19 (patch) | |
tree | f9a979741790c9647b53e3f7c8f2c5fd66b6e56a /Python/sysmodule.c | |
parent | d19fa7a337d829e3dab3e9f919f5dcf09cf6f6ba (diff) | |
download | cpython-ef75a625cdf8377d687a04948b4db9bc1917bf19.zip cpython-ef75a625cdf8377d687a04948b4db9bc1917bf19.tar.gz cpython-ef75a625cdf8377d687a04948b4db9bc1917bf19.tar.bz2 |
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
* Call _PyTime_Init() and _PyWarnings_InitState() earlier during the
Python initialization.
* Inline _PyImportHooks_Init() into _PySys_InitCore().
* The _warnings initialization function no longer call
_PyWarnings_InitState() to prevent resetting filters_version to 0.
* _PyWarnings_InitState() now returns an int and no longer clear the
state in case of error (it's done anyway at Python exit).
* Rework init_importlib(), fix refleaks on errors.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 61741f7..f05b33a 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -2841,6 +2841,11 @@ _PySys_InitCore(PyThreadState *tstate, PyObject *sysdict) } } + /* adding sys.path_hooks and sys.path_importer_cache */ + SET_SYS("meta_path", PyList_New(0)); + SET_SYS("path_importer_cache", PyDict_New()); + SET_SYS("path_hooks", PyList_New(0)); + if (_PyErr_Occurred(tstate)) { goto err_occurred; } |