summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-03-22 23:07:32 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-03-22 23:07:32 +0000
commit916cca3abbc52d219c33b3ac3d44a103c39592d5 (patch)
tree44ed6b7050489a5b98741fca505c144cb58fcb37 /Modules/unicodedata.c
parent6e527cda15eed13f2c2b18b5b83f603928250dce (diff)
downloadcpython-916cca3abbc52d219c33b3ac3d44a103c39592d5.tar.gz
Update the version number of the Unicode Database in a few more places.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r--Modules/unicodedata.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 0269175c1e..5bfdb3d55c 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)
@@ -1233,11 +1233,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/).");
PyMODINIT_FUNC
initunicodedata(void)