diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-04-18 20:21:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-04-18 20:21:00 (GMT) |
commit | b5c4b7be3fc0c04f30535b456a22baef4d9b324e (patch) | |
tree | d25c92078a7f938f818c219d3f3fafa44fe21f2d /Lib | |
parent | 6869458236f4010dd14622ad74853b888164ca12 (diff) | |
download | cpython-b5c4b7be3fc0c04f30535b456a22baef4d9b324e.zip cpython-b5c4b7be3fc0c04f30535b456a22baef4d9b324e.tar.gz cpython-b5c4b7be3fc0c04f30535b456a22baef4d9b324e.tar.bz2 |
Skip nameprep test 3.43, as we do allow unassigned characters. The test
fails only in UCS-2 mode, since it tests a non-BMP character.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_codecs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 769a40d..17395d3 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -294,8 +294,10 @@ nameprep_tests = [ ('\xd8\xa71\xd8\xa8', '\xd8\xa71\xd8\xa8'), # 3.43 Unassigned code point U+E0002. - ('\xf3\xa0\x80\x82', - None), + # Skip this test as we allow unassigned + #('\xf3\xa0\x80\x82', + # None), + (None, None), # 3.44 Larger test (shrinking). # Original test case reads \xc3\xdf ('X\xc2\xad\xc3\x9f\xc4\xb0\xe2\x84\xa1j\xcc\x8c\xc2\xa0\xc2' |