diff options
| author | Alexandre Flament <alex@al-f.net> | 2022-06-18 08:26:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-18 08:26:46 +0200 |
| commit | 1945039017b7a044b1606ef0da24d569552ef727 (patch) | |
| tree | 3b3f79d686e48510e2c053f5fd041934f5687e2b | |
| parent | a7b0b2ecbf82f823750f641500085f316cb4edd0 (diff) | |
| parent | 5bcbec9b061b02900dbd8b9751f68bbb5687247d (diff) | |
Merge pull request #1344 from dalf/fix-sys-modules-iterator
Fix: use sys.modules.copy() to avoid RuntimeError
| -rw-r--r-- | searx/engines/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/searx/engines/__init__.py b/searx/engines/__init__.py index ae132f48d..3fb0bcfb1 100644 --- a/searx/engines/__init__.py +++ b/searx/engines/__init__.py @@ -149,7 +149,11 @@ def set_loggers(engine, engine_name): engine.logger = logger.getChild(engine_name) # the engine may have load some other engines # may sure the logger is initialized - for module_name, module in sys.modules.items(): + # use sys.modules.copy() to avoid "RuntimeError: dictionary changed size during iteration" + # see https://github.com/python/cpython/issues/89516 + # and https://docs.python.org/3.10/library/sys.html#sys.modules + modules = sys.modules.copy() + for module_name, module in modules.items(): if ( module_name.startswith("searx.engines") and module_name != "searx.engines.__init__" |