mirror of
https://github.com/django/django.git
synced 2025-03-06 07:22:32 +00:00
Added an explanatory comment. Refs #22017
This commit is contained in:
parent
666990a2a0
commit
608e6eb295
@ -81,6 +81,9 @@ def gen_filenames():
|
|||||||
Yields a generator over filenames referenced in sys.modules and translation
|
Yields a generator over filenames referenced in sys.modules and translation
|
||||||
files.
|
files.
|
||||||
"""
|
"""
|
||||||
|
# N.B. ``list(...)`` is needed, because this runs in parallel with
|
||||||
|
# application code which might be mutating ``sys.modules``, and this will
|
||||||
|
# fail with RuntimeError: cannot mutate dictionary while iterating
|
||||||
filenames = [filename.__file__ for filename in list(sys.modules.values())
|
filenames = [filename.__file__ for filename in list(sys.modules.values())
|
||||||
if hasattr(filename, '__file__')]
|
if hasattr(filename, '__file__')]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user