diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-08-10 19:04:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-08-10 19:04:00 (GMT) |
commit | 789c09d2cd8da14166846f007d53a56585b0d6c3 (patch) | |
tree | 2660b7e3b0ff4bf51ccddad29926d08cf6c038c2 /Modules | |
parent | c69ac2527d38922615c85ef19032895ea2d2c909 (diff) | |
download | cpython-789c09d2cd8da14166846f007d53a56585b0d6c3.zip cpython-789c09d2cd8da14166846f007d53a56585b0d6c3.tar.gz cpython-789c09d2cd8da14166846f007d53a56585b0d6c3.tar.bz2 |
Update dangling references to the 3.2 database to
mention that this is UCD 4.1 now.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/unicodedata.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 1b0be28..7f8592f 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1,8 +1,8 @@ /* ------------------------------------------------------------------------ - unicodedata -- Provides access to the Unicode 3.2 data base. + unicodedata -- Provides access to the Unicode 4.1 data base. - Data was extracted from the Unicode 3.2 UnicodeData.txt file. + Data was extracted from the Unicode 4.1 UnicodeData.txt file. Written by Marc-Andre Lemburg (mal@lemburg.com). Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com) @@ -1173,11 +1173,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\ -3.2.0 which is publically available from ftp://ftp.unicode.org/.\n\ +4.1.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 3.2.0 (see\n\ -http://www.unicode.org/Public/3.2-Update/UnicodeData-3.2.0.html)."); +UnicodeData File Format 4.1.0 (see\n\ +http://www.unicode.org/Public/4.1.0/ucd/UCD.html)."); PyMODINIT_FUNC initunicodedata(void) |