1
0
mirror of https://github.com/django/django.git synced 2025-04-22 00:04:43 +00:00

[1.6.x] Fixed #21049 -- Fixed autoreload for Python 3

Changed th system module values check to return a list.
In Python 3 it returns a dict_view which could occassionally produce
a runtime error of "dictionary changed size during iteration".

Backport of 559cb826b8 from master
This commit is contained in:
Max Burstein 2013-09-06 14:37:43 -05:00 committed by Tim Graham
parent 2c73ba88f2
commit 92e89452f1

View File

@ -57,7 +57,7 @@ _error_files = []
def code_changed():
global _mtimes, _win
filenames = []
for m in sys.modules.values():
for m in list(sys.modules.values()):
try:
filenames.append(m.__file__)
except AttributeError: