[Python-checkins] cpython (merge 3.4 -> default): Merge: #18176: updated stdtypes UCD link, added reminder to makeunicodedata.

r.david.murray python-checkins at python.org
Thu Oct 9 23:39:31 CEST 2014


https://hg.python.org/cpython/rev/2551bdfff335
changeset:   92897:2551bdfff335
parent:      92895:ef72142eb8a2
parent:      92896:fd7994909c2d
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Oct 09 17:33:15 2014 -0400
summary:
  Merge: #18176: updated stdtypes UCD link, added reminder to makeunicodedata.

files:
  Doc/library/stdtypes.rst         |  2 +-
  Tools/unicode/makeunicodedata.py |  4 ++++
  2 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -354,7 +354,7 @@
    The numeric literals accepted include the digits ``0`` to ``9`` or any
    Unicode equivalent (code points with the ``Nd`` property).
 
-   See http://www.unicode.org/Public/6.0.0/ucd/extracted/DerivedNumericType.txt
+   See http://www.unicode.org/Public/7.0.0/ucd/extracted/DerivedNumericType.txt
    for a complete list of code points with the ``Nd`` property.
 
 
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py
--- a/Tools/unicode/makeunicodedata.py
+++ b/Tools/unicode/makeunicodedata.py
@@ -37,6 +37,10 @@
 VERSION = "3.2"
 
 # The Unicode Database
+# --------------------
+# When changing UCD version please update
+#   * Doc/library/stdtypes.rst, and
+#   * Doc/library/unicodedata.rst
 UNIDATA_VERSION = "7.0.0"
 UNICODE_DATA = "UnicodeData%s.txt"
 COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt"

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


More information about the Python-checkins mailing list