##// END OF EJS Templates
Merge pull request #3555 from takluyver/i3547...
Merge pull request #3555 from takluyver/i3547 Simplify caching of modules with %run. Previously, we cleared and re-used a single FakeModule instance in which to run scripts, and cached copies of the modules' namespaces to prevent them from being cleared. Now, we cache one FakeModule instance per script file, clearing it and re-using it if the same script is re-run. Closes #3547, and fixes another test that was marked as a known failure.

File last commit:

r3692:7403bafc
r11297:6217a475 merge
Show More
__init__.py
9 lines | 259 B | text/x-python | PythonLexer
try:
from numpy.testing.decorators import *
from numpy.testing.noseclasses import KnownFailure
except ImportError:
from _decorators import *
try:
from _numpy_testing_noseclasses import KnownFailure
except ImportError:
pass