summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-05 16:00:09 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-05 16:00:09 -0500
commitbbfd0597107e1e7d4034c21af1cefb3e2c758314 (patch)
tree79c443986db9366c7442971a721ac662da442b88
parent520fb387545e3d7d0af8cd24e89cc71470a9574f (diff)
downloadpython-coveragepy-bbfd0597107e1e7d4034c21af1cefb3e2c758314.tar.gz
When we installed on py3k using Distribute, we no longer needed the no-script hack in this file.
-rw-r--r--test/backtest.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/backtest.py b/test/backtest.py
index 12bdbc9..63ee519 100644
--- a/test/backtest.py
+++ b/test/backtest.py
@@ -26,11 +26,6 @@ else:
"""
- if sys.hexversion > 0x03000000 and cmd.startswith("coverage "):
- # We don't have a coverage command on 3.x, so fix it up to call the
- # script. Eventually we won't need this.
- cmd = "python " + sys.prefix + os.sep + "Scripts" + os.sep + cmd
-
proc = subprocess.Popen(cmd, shell=True,
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT