diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-14 09:27:27 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-14 09:27:27 -0500 |
commit | e46e6e0ff56104f137678fa712b7b4f78b25cea8 (patch) | |
tree | 5b4db7a4857fe6d0b9041f167587352e9a2b89ac /tests/backtest.py | |
parent | d53ee24128c59babdce7902102671cc3c0d9e950 (diff) | |
download | python-coveragepy-e46e6e0ff56104f137678fa712b7b4f78b25cea8.tar.gz |
Move some code to where it belongs
Diffstat (limited to 'tests/backtest.py')
-rw-r--r-- | tests/backtest.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/backtest.py b/tests/backtest.py index 73b1067..5083472 100644 --- a/tests/backtest.py +++ b/tests/backtest.py @@ -4,31 +4,6 @@ # (Redefining built-in blah) # The whole point of this file is to redefine built-ins, so shut up about it. -import subprocess - - -# This isn't really a backward compatibility thing, should be moved into a -# helpers file or something. -def run_command(cmd): - """Run a command in a sub-process. - - Returns the exit status code and the combined stdout and stderr. - - """ - proc = subprocess.Popen(cmd, shell=True, - stdin=subprocess.PIPE, stdout=subprocess.PIPE, - stderr=subprocess.STDOUT - ) - output, _ = proc.communicate() - status = proc.returncode - - # Get the output, and canonicalize it to strings with newlines. - if not isinstance(output, str): - output = output.decode('utf-8') - output = output.replace('\r', '') - - return status, output - # No more execfile in Py3 try: |