diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-10 07:37:43 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-10 07:37:43 (GMT) |
commit | df8077ecd3818a3f6942240047d5c7ed758a15cc (patch) | |
tree | bd7ce157004f9c4f8aaee1992860115881bdd581 /Modules/unicodedata.c | |
parent | 021572431ba02de96361d64a8575f82097abc8f4 (diff) | |
parent | 98d2c0aba3ddf2e5f0d8e841c7682925a2cedb5a (diff) | |
download | cpython-df8077ecd3818a3f6942240047d5c7ed758a15cc.zip cpython-df8077ecd3818a3f6942240047d5c7ed758a15cc.tar.gz cpython-df8077ecd3818a3f6942240047d5c7ed758a15cc.tar.bz2 |
#13379: merge with 3.2.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 5032d42..66422d9 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1,8 +1,9 @@ /* ------------------------------------------------------------------------ - unicodedata -- Provides access to the Unicode 5.2 data base. + unicodedata -- Provides access to the Unicode database. - Data was extracted from the Unicode 5.2 UnicodeData.txt file. + Data was extracted from the UnicodeData.txt file. + The current version number is reported in the unidata_version constant. Written by Marc-Andre Lemburg (mal@lemburg.com). Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com) @@ -1318,11 +1319,11 @@ 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.2.0 which is publically available from ftp://ftp.unicode.org/.\n\ +6.0.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.2.0 (see\n\ -http://www.unicode.org/reports/tr44/tr44-4.html)."); +UnicodeData File Format 6.0.0 (see\n\ +http://www.unicode.org/reports/tr44/tr44-6.html)."); static struct PyModuleDef unicodedatamodule = { |