##// END OF EJS Templates
Remove now-superfluous code in autoreload extension.
Thomas Kluyver -
Show More
@@ -210,9 +210,6 b' class ModuleReloader(object):'
210 except ValueError:
210 except ValueError:
211 continue
211 continue
212
212
213 if ext != PY_COMPILED_EXT:
214 continue
215
216 try:
213 try:
217 pymtime = os.stat(py_filename).st_mtime
214 pymtime = os.stat(py_filename).st_mtime
218 if pymtime <= os.stat(pyc_filename).st_mtime:
215 if pymtime <= os.stat(pyc_filename).st_mtime:
@@ -11,7 +11,6 b' import IPython.testing.tools as tt'
11
11
12 from IPython.extensions.autoreload import AutoreloadInterface
12 from IPython.extensions.autoreload import AutoreloadInterface
13 from IPython.core.hooks import TryNext
13 from IPython.core.hooks import TryNext
14 from IPython.testing.decorators import knownfailureif
15
14
16 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
17 # Test fixture
16 # Test fixture
General Comments 0
You need to be logged in to leave comments. Login now