diff options
author | Walter Dörwald <walter@livinglogic.de> | 2009-04-25 14:13:56 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2009-04-25 14:13:56 (GMT) |
commit | 1b08b30743ec823cc01a4efbe44b721986e5cb51 (patch) | |
tree | 3e5160e43fa38323ede3edc802b377cd28cdb03c /Objects | |
parent | 939f9c898a2835a600e346696e3e82fbfc5c27fa (diff) | |
download | cpython-1b08b30743ec823cc01a4efbe44b721986e5cb51.zip cpython-1b08b30743ec823cc01a4efbe44b721986e5cb51.tar.gz cpython-1b08b30743ec823cc01a4efbe44b721986e5cb51.tar.bz2 |
Merged revisions 71894 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71894 | walter.doerwald | 2009-04-25 16:03:16 +0200 (Sa, 25 Apr 2009) | 4 lines
Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in
makeunicodedata.py and regenerated the Unicode database (This fixes
u'\u1d79'.lower() == '\x00').
........
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodetype_db.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodetype_db.h b/Objects/unicodetype_db.h index 640697c..f46f1fb 100644 --- a/Objects/unicodetype_db.h +++ b/Objects/unicodetype_db.h @@ -127,7 +127,7 @@ const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = { {0, 0, 0, 0, 8, 1540}, {0, 0, 0, 0, 9, 1540}, {0, 0, 0, 0, 0, 1792}, - {42877, 0, 42877, 0, 0, 3849}, + {42877, 7545, 42877, 0, 0, 3849}, {3814, 0, 3814, 0, 0, 1801}, {65477, 0, 65477, 0, 0, 1801}, {0, 57921, 0, 0, 0, 1921}, @@ -174,7 +174,7 @@ const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = { {0, 54787, 0, 0, 0, 1921}, {0, 54753, 0, 0, 0, 1921}, {58272, 0, 58272, 0, 0, 1801}, - {0, 7545, 0, 0, 0, 3969}, + {42877, 7545, 42877, 0, 0, 3969}, {0, 40, 0, 0, 0, 1921}, {65496, 0, 65496, 0, 0, 1801}, }; |