This commit is contained in:
Benjamin Peterson 2013-06-10 09:24:01 -07:00
commit 3164f5d565
3 changed files with 25 additions and 24 deletions

View file

@ -577,6 +577,9 @@ class UnicodeTest(string_tests.CommonTest,
self.assertEqual('\U0008fffe'.lower(), '\U0008fffe')
self.assertEqual('\u2177'.lower(), '\u2177')
# See issue #18183 for this one.
'\U00010000\U00100000'.lower()
def test_casefold(self):
self.assertEqual('hello'.casefold(), 'hello')
self.assertEqual('hELlo'.casefold(), 'hello')