summaryrefslogtreecommitdiff
path: root/test/backtest.py
diff options
context:
space:
mode:
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