diff options
author | Guido van Rossum <guido@python.org> | 2007-05-24 00:50:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-24 00:50:02 (GMT) |
commit | c2f93dc2e42b48a20578599407b0bb51a6663d09 (patch) | |
tree | a13677daceceb29f55a468cac3874e1a757dccc9 /Lib/test/test_io.py | |
parent | d8595fe304c3d9bb15ad59b1db0b71a2b7ab3c54 (diff) | |
download | cpython-c2f93dc2e42b48a20578599407b0bb51a6663d09.zip cpython-c2f93dc2e42b48a20578599407b0bb51a6663d09.tar.gz cpython-c2f93dc2e42b48a20578599407b0bb51a6663d09.tar.bz2 |
Remove native popen() and fdopen(), replacing them with subprocess calls.
Fix a path to an assert in fileio_read().
Some misc tweaks.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r-- | Lib/test/test_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index d1c0f68..c98d61f 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -478,7 +478,7 @@ class TextIOWrapperTest(unittest.TestCase): [ '\r\n', input_lines ], ] - encodings = ('utf-8', 'bz2') + encodings = ('utf-8', 'latin-1') # Try a range of pad sizes to test the case where \r is the last # character in TextIOWrapper._pending_line. |