mirror of https://github.com/python/cpython.git
#13379: merge with 3.2.
This commit is contained in:
commit
df8077ecd3
|
@ -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).
|
Written by Marc-Andre Lemburg (mal@lemburg.com).
|
||||||
Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.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\
|
"This module provides access to the Unicode Character Database which\n\
|
||||||
defines character properties for all Unicode characters. The data in\n\
|
defines character properties for all Unicode characters. The data in\n\
|
||||||
this database is based on the UnicodeData.txt file version\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\
|
\n\
|
||||||
The module uses the same names and symbols as defined by the\n\
|
The module uses the same names and symbols as defined by the\n\
|
||||||
UnicodeData File Format 5.2.0 (see\n\
|
UnicodeData File Format 6.0.0 (see\n\
|
||||||
http://www.unicode.org/reports/tr44/tr44-4.html).");
|
http://www.unicode.org/reports/tr44/tr44-6.html).");
|
||||||
|
|
||||||
|
|
||||||
static struct PyModuleDef unicodedatamodule = {
|
static struct PyModuleDef unicodedatamodule = {
|
||||||
|
|
Loading…
Reference in New Issue