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".
This commit is contained in:
Max Burstein 2013-09-06 14:37:43 -05:00
parent c7c19ac408
commit 559cb826b8
1 changed files with 1 additions and 1 deletions

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: