diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-29 15:58:53 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-29 15:58:53 (GMT) |
commit | a74f8ef419d2c7c5f398a80165f8d8fd5e4d7b8e (patch) | |
tree | 70524b8d668bbe4695982cef03dcba9d1aa28a1f /Lib/inspect.py | |
parent | c4d7d8c49d3a78fc7eeb19588a9f44a74bec71e1 (diff) | |
download | cpython-a74f8ef419d2c7c5f398a80165f8d8fd5e4d7b8e.zip cpython-a74f8ef419d2c7c5f398a80165f8d8fd5e4d7b8e.tar.gz cpython-a74f8ef419d2c7c5f398a80165f8d8fd5e4d7b8e.tar.bz2 |
Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487).
This fixes a regression compared to 2.x, where sys.modules.items()
returns a copy, as indicated by a comment in the source. Diagnosis and
patch by Erik Tollerud.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index bb46ea6..4e17f1b 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -483,7 +483,7 @@ def getmodule(object, _filename=None): return sys.modules.get(modulesbyfile[file]) # Update the filename to module name cache and check yet again # Copy sys.modules in order to cope with changes while iterating - for modname, module in sys.modules.items(): + for modname, module in list(sys.modules.items()): if ismodule(module) and hasattr(module, '__file__'): f = module.__file__ if f == _filesbymodname.get(modname, None): |