[Python-checkins] cpython (3.2): #13379: update Unicode version in unicodedata docstrings and comments.

ezio.melotti python-checkins at python.org
Thu Nov 10 08:38:02 CET 2011


http://hg.python.org/cpython/rev/6ddda809ea8c
changeset:   73474:6ddda809ea8c
branch:      3.2
parent:      73472:9328080a19c0
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Nov 10 09:36:34 2011 +0200
summary:
  #13379: update Unicode version in unicodedata docstrings and comments.

files:
  Modules/unicodedata.c |  11 ++++++-----
  1 files changed, 6 insertions(+), 5 deletions(-)


diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
--- 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 at lemburg.com).
    Modified for Python 2.0 by Fredrik Lundh (fredrik at pythonware.com)
@@ -1241,11 +1242,11 @@
 "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 = {

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list