diff options
author | Anthony Shaw <anthony.p.shaw@gmail.com> | 2018-01-05 11:18:42 +1100 |
---|---|---|
committer | Gábor Bernát <jokerjokerer@gmail.com> | 2018-01-05 02:18:42 +0200 |
commit | 8a8d1a71c7957582c5f4ed4c4b367b7a76c7cf92 (patch) | |
tree | 5ff134ad179801e40fcd9474c89a351c50e71c49 /changelog | |
parent | 3e09189075afca4ad6a43bde24e0a9e4b828234e (diff) | |
download | tox-git-8a8d1a71c7957582c5f4ed4c4b367b7a76c7cf92.tar.gz |
add safety wrapper around sys.stdout assignment (#724)
* add safety wrapper around sys.stdout assignment see #723
Diffstat (limited to 'changelog')
-rw-r--r-- | changelog/723.bugfix.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changelog/723.bugfix.rst b/changelog/723.bugfix.rst new file mode 100644 index 00000000..8ec40c8e --- /dev/null +++ b/changelog/723.bugfix.rst @@ -0,0 +1,5 @@ +Fixed an issue where invocation of Tox from the Python package, where +invocation errors (failed actions) occur results in a change in the +sys.stdout stream encoding in Python 3.x. +New behaviour is that sys.stdout is reset back to its original encoding +after invocation errors - by @tonybaloney |