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
commit267506432b81cd9cf95f0062076a963d7adcbc02 (patch)
tree1f7039b8d1d20414402b6112b31984a41955ff0a /test/backtest.py
parent040044ac530a9aafb81593e008f49615e70402a5 (diff)
downloadpython-coveragepy-267506432b81cd9cf95f0062076a963d7adcbc02.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 656b35c..4460a78 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