diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-01-11 18:17:06 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-01-11 18:17:06 -0500 |
commit | b2bf01d824ea5a13b375d0aa79211c01f8ab726a (patch) | |
tree | c2e840d182aff5a4ae272ca9a80b6a1cf3c1db3d /Lib/test/string_tests.py | |
parent | 9007f72db095212a169b3234194fcc08bd14bf6e (diff) | |
download | cpython-git-b2bf01d824ea5a13b375d0aa79211c01f8ab726a.tar.gz |
use full unicode mappings for upper/lower/title case (#12736)
Also broaden the category of characters that count as lowercase/uppercase.
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r-- | Lib/test/string_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index 43ecf2a03c..feeb4ce52d 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -669,7 +669,7 @@ class CommonTest(BaseTest): # check that titlecased chars are lowered correctly # \u1ffc is the titlecased char - self.checkequal('\u1ffc\u1ff3\u1ff3\u1ff3', + self.checkequal('\u03a9\u0399\u1ff3\u1ff3\u1ff3', '\u1ff3\u1ff3\u1ffc\u1ffc', 'capitalize') # check with cased non-letter chars self.checkequal('\u24c5\u24e8\u24e3\u24d7\u24de\u24dd', |