diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 17:30:31 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-12-05 17:30:31 -0500 |
commit | 12da359e95a2f4aa3df4afb714df5ba1b6450e0f (patch) | |
tree | 8aa3e53f40dcd434b0e331c466b6e19ecb5d20aa /test/backtest.py | |
parent | 0182926a873072d7062b8db17c15d345e8054193 (diff) | |
parent | 5b2f0dea43b6d534bdb5fc37312372c86a1d0dec (diff) | |
download | python-coveragepy-git-12da359e95a2f4aa3df4afb714df5ba1b6450e0f.tar.gz |
Merge final 3.2 tweaks to default.
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 |