diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-10 17:09:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-10 17:09:19 (GMT) |
commit | e0a976c09d379485380728be54d96b3213a10fa9 (patch) | |
tree | ccf5f5540864a82616c85dcaed45fedabe8b1de6 /Lib | |
parent | 013bb91aa304062bb65fe8951e2d263f2065ee56 (diff) | |
download | cpython-e0a976c09d379485380728be54d96b3213a10fa9.zip cpython-e0a976c09d379485380728be54d96b3213a10fa9.tar.gz cpython-e0a976c09d379485380728be54d96b3213a10fa9.tar.bz2 |
Temporary silence test broken by issue19255.
Remove unused variables.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_io.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 23edee6..4182da3 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -2691,7 +2691,8 @@ class CTextIOWrapperTest(TextIOWrapperTest): class PyTextIOWrapperTest(TextIOWrapperTest): io = pyio - shutdown_error = "LookupError: unknown encoding: ascii" + #shutdown_error = "LookupError: unknown encoding: ascii" + shutdown_error = "TypeError: 'NoneType' object is not iterable" class IncrementalNewlineDecoderTest(unittest.TestCase): |