diff options
| author | Robert Collins <robertc@robertcollins.net> | 2013-03-31 18:45:01 +1300 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2013-03-31 18:45:01 +1300 |
| commit | 03264963c5fc0a145880c20cd1de9800a23a206c (patch) | |
| tree | f421ed0be46efcde9cf31d522ff23ee9d44e6204 /python/subunit/run.py | |
| parent | 205803cd9aa68bae23d284593cbd5ec3135ac5e2 (diff) | |
| download | subunit-git-03264963c5fc0a145880c20cd1de9800a23a206c.tar.gz | |
Switch to variable length encoded integers.
Diffstat (limited to 'python/subunit/run.py')
| -rwxr-xr-x | python/subunit/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/run.py b/python/subunit/run.py index b78bf32..2a3de42 100755 --- a/python/subunit/run.py +++ b/python/subunit/run.py @@ -110,7 +110,7 @@ if __name__ == '__main__': # on non-ttys. stream = get_default_formatter() runner = SubunitTestRunner - # Patch stdout to be unbuffered, so that pdb works well. + # Patch stdout to be unbuffered, so that pdb works well on 2.6/2.7. binstdout = io.open(sys.stdout.fileno(), 'wb', 0) if sys.version_info[0] > 2: sys.stdout = io.TextIOWrapper(binstdout, encoding=sys.stdout.encoding) |
