summaryrefslogtreecommitdiff
path: root/test/backtest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-27 23:02:29 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-27 23:02:29 -0500
commit9d89805e5a4a9969387f58f7b299231ae7ec8486 (patch)
tree71174dd5ba518ca36e4663f0a7c24ac123ac023d /test/backtest.py
parentcd1929b269118e6f335aea74165e9366b3c3ac42 (diff)
downloadpython-coveragepy-git-9d89805e5a4a9969387f58f7b299231ae7ec8486.tar.gz
Add more tests of omitting files during HTML reporting, and a better way to enable re-importing modules during test_farm tests.
Diffstat (limited to 'test/backtest.py')
-rw-r--r--test/backtest.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/backtest.py b/test/backtest.py
index 656b35c7..4460a78d 100644
--- a/test/backtest.py
+++ b/test/backtest.py
@@ -47,9 +47,3 @@ except NameError:
def execfile(filename, globs):
"""A Python 3 implementation of execfile."""
exec(compile(open(filename).read(), filename, 'exec'), globs)
-
-# reload moved in Py3k
-try:
- from imp import reload
-except:
- reload = reload