diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-06-30 00:18:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 00:18:22 (GMT) |
commit | 2515a28230b1a011205f30263da6b01c6bd167a3 (patch) | |
tree | 1553cd5aba21acc96c84d79d0c462b248dcc6b35 /Lib/idlelib/idle_test | |
parent | dd8a93e23b5c4f9290e1cea6183d97eb9b5e61c0 (diff) | |
download | cpython-2515a28230b1a011205f30263da6b01c6bd167a3.zip cpython-2515a28230b1a011205f30263da6b01c6bd167a3.tar.gz cpython-2515a28230b1a011205f30263da6b01c6bd167a3.tar.bz2 |
bpo-41152: IDLE: always use UTF-8 for standard IO streams (GH-21214)
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r-- | Lib/idlelib/idle_test/test_outwin.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/idlelib/idle_test/test_outwin.py b/Lib/idlelib/idle_test/test_outwin.py index cd099ec..e347bfc 100644 --- a/Lib/idlelib/idle_test/test_outwin.py +++ b/Lib/idlelib/idle_test/test_outwin.py @@ -58,11 +58,6 @@ class OutputWindowTest(unittest.TestCase): get = self.text.get write = self.window.write - # Test bytes. - b = b'Test bytes.' - eq(write(b), len(b)) - eq(get('1.0', '1.end'), b.decode()) - # No new line - insert stays on same line. delete('1.0', 'end') test_text = 'test text' |