diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-11 00:16:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-11 00:16:25 (GMT) |
commit | 577dd61ff2608c9271801a099b0015508bcde2b7 (patch) | |
tree | 00a05174bb87c7ac439dea1e8310fed925cbd2c6 /Modules | |
parent | a4cf1c87d08d32098fa3b230d6f32b8d24cbdce3 (diff) | |
download | cpython-577dd61ff2608c9271801a099b0015508bcde2b7.zip cpython-577dd61ff2608c9271801a099b0015508bcde2b7.tar.gz cpython-577dd61ff2608c9271801a099b0015508bcde2b7.tar.bz2 |
make sure the docstring is never out of date wrt unicode data version
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/unicodedata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 10d60e3..901e337 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1325,7 +1325,7 @@ this database is based on the UnicodeData.txt file version\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 6.0.0."); +UnicodeData File Format " UNIDATA_VERSION "."); static struct PyModuleDef unicodedatamodule = { |