Message243016
| Author |
ned.deily |
| Recipients |
amaury.forgeotdarc, jwilk, ned.deily, python-dev, serhiy.storchaka |
| Date |
2015年05月12日.21:21:15 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1431465675.38.0.112159668726.issue22681@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Lots of "LookupError: unknown encoding: koi8_t" test failures (on OS X 10.10) after this commit, for example, in test_codecs:
======================================================================
ERROR: test_basics (test.test_codecs.BasicUnicodeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/py/dev/3x/source/Lib/test/test_codecs.py", line 1869, in test_basics
name = codecs.lookup(encoding).name
LookupError: unknown encoding: koi8_t
======================================================================
ERROR: test_decoder_state (test.test_codecs.BasicUnicodeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/py/dev/3x/source/Lib/test/test_codecs.py", line 2024, in test_decoder_state
self.check_state_handling_decode(encoding, u, u.encode(encoding))
LookupError: unknown encoding: koi8_t
======================================================================
ERROR: test_seek (test.test_codecs.BasicUnicodeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/py/dev/3x/source/Lib/test/test_codecs.py", line 1992, in test_seek
reader = codecs.getreader(encoding)(io.BytesIO(s.encode(encoding)))
File "/py/dev/3x/blds/uxd/../../source/Lib/codecs.py", line 998, in getreader
return lookup(encoding).streamreader
LookupError: unknown encoding: koi8_t
----------------------------------------------------------------------
Ran 211 tests in 5.970s
FAILED (errors=5, skipped=17) |
|