diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-22 23:16:42 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-22 23:16:42 (GMT) |
commit | 4c5475d1967abc63e9f611fbc26e82a2b8e2b9e6 (patch) | |
tree | 6f1f737a31b0a1355b082952c260c1e393147fd8 /Modules | |
parent | 910bd51ea1baef3ea0b4c9f1e3d2d150108368c5 (diff) | |
download | cpython-4c5475d1967abc63e9f611fbc26e82a2b8e2b9e6.zip cpython-4c5475d1967abc63e9f611fbc26e82a2b8e2b9e6.tar.gz cpython-4c5475d1967abc63e9f611fbc26e82a2b8e2b9e6.tar.bz2 |
Merged revisions 79314 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79314 | ezio.melotti | 2010-03-23 01:07:32 +0200 (Tue, 23 Mar 2010) | 1 line
Update the version number of the Unicode Database in a few more places.
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/unicodedata.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index ecd744a..463f2cc 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1,8 +1,8 @@ /* ------------------------------------------------------------------------ - unicodedata -- Provides access to the Unicode 5.1 data base. + unicodedata -- Provides access to the Unicode 5.2 data base. - Data was extracted from the Unicode 5.1 UnicodeData.txt file. + Data was extracted from the Unicode 5.2 UnicodeData.txt file. Written by Marc-Andre Lemburg (mal@lemburg.com). Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com) @@ -1235,11 +1235,10 @@ PyDoc_STRVAR(unicodedata_docstring, "This module provides access to the Unicode Character Database which\n\ defines character properties for all Unicode characters. The data in\n\ this database is based on the UnicodeData.txt file version\n\ -5.1.0 which is publically available from ftp://ftp.unicode.org/.\n\ +5.2.0 which is publically available from ftp://ftp.unicode.org/.\n\ \n\ The module uses the same names and symbols as defined by the\n\ -UnicodeData File Format 5.1.0 (see\n\ -http://www.unicode.org/Public/5.1.0/ucd/UCD.html)."); +UnicodeData File Format 5.2.0 (see http://www.unicode.org/reports/tr44/)."); static struct PyModuleDef unicodedatamodule = { |