summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-04 21:33:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-04 21:33:28 -0500
commit90ec910a0ba4d6d0234f8018bd43409c97bbd4cb (patch)
tree3d2f52a14e794ccfedfee62f337a51a64d61eda2
parentdd83cb21e00daa2eb02c24a1c89ee1fbd3ee2954 (diff)
downloadpython-coveragepy-git-90ec910a0ba4d6d0234f8018bd43409c97bbd4cb.tar.gz
This file was unused since we deleted test_farm.py a year ago
-rw-r--r--tests/backtest.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/backtest.py b/tests/backtest.py
deleted file mode 100644
index 05681dc7..00000000
--- a/tests/backtest.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
-# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
-
-"""Add things to old Pythons so I can pretend they are newer, for tests."""
-
-# No more execfile in Py3
-try:
- execfile = execfile
-except NameError:
- def execfile(filename, globs):
- """A Python 3 implementation of execfile."""
- with open(filename) as fobj:
- code = fobj.read()
- exec(compile(code, filename, 'exec'), globs)