diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 16:00:09 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 16:00:09 -0500 |
commit | 254409614bc15809dd178944fc92d286474b2d8c (patch) | |
tree | 8c3376d708263ee73be1afa1f1fc09080c4f4cd8 /test/backtest.py | |
parent | 404a935f379afae92a812daf64a0a5877f5e33e2 (diff) | |
download | python-coveragepy-git-254409614bc15809dd178944fc92d286474b2d8c.tar.gz |
When we installed on py3k using Distribute, we no longer needed the no-script hack in this file.
--HG--
branch : 3.2_branch
Diffstat (limited to 'test/backtest.py')
-rw-r--r-- | test/backtest.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/backtest.py b/test/backtest.py index 12bdbc97..63ee5194 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 |