##// END OF EJS Templates
Merge pull request #10945 from ipython/auto-backport-of-pr-10944...
Thomas Kluyver -
r24099:a3b517a7 merge
parent child Browse files
Show More
@@ -186,7 +186,7 b' class ModuleReloader(object):'
186 if not hasattr(module, '__file__') or module.__file__ is None:
186 if not hasattr(module, '__file__') or module.__file__ is None:
187 return None, None
187 return None, None
188
188
189 if getattr(module, '__name__', None) in ['__mp_main__', '__main__']:
189 if getattr(module, '__name__', None) in [None, '__mp_main__', '__main__']:
190 # we cannot reload(__main__) or reload(__mp_main__)
190 # we cannot reload(__main__) or reload(__mp_main__)
191 return None, None
191 return None, None
192
192
General Comments 0
You need to be logged in to leave comments. Login now