[Python-checkins] cpython (3.4): #18176: Change generic UCD PropList link to version specific link.

r.david.murray python-checkins at python.org
Fri Oct 10 02:47:58 CEST 2014


https://hg.python.org/cpython/rev/73a6f121e51a
changeset:   92904:73a6f121e51a
branch:      3.4
parent:      92902:015b84026f70
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Oct 09 20:45:59 2014 -0400
summary:
  #18176: Change generic UCD PropList link to version specific link.

files:
  Doc/reference/lexical_analysis.rst |  4 +++-
  Tools/unicode/makeunicodedata.py   |  2 +-
  2 files changed, 4 insertions(+), 2 deletions(-)


diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst
--- a/Doc/reference/lexical_analysis.rst
+++ b/Doc/reference/lexical_analysis.rst
@@ -310,7 +310,9 @@
 * *Mc* - spacing combining marks
 * *Nd* - decimal numbers
 * *Pc* - connector punctuations
-* *Other_ID_Start* - explicit list of characters in `PropList.txt <http://unicode.org/Public/UNIDATA/PropList.txt>`_ to support backwards compatibility
+* *Other_ID_Start* - explicit list of characters in `PropList.txt
+  <http://www.unicode.org/Public/6.3.0/ucd/PropList.txt>`_ to support backwards
+  compatibility
 * *Other_ID_Continue* - likewise
 
 All identifiers are converted into the normal form NFKC while parsing; comparison
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py
--- a/Tools/unicode/makeunicodedata.py
+++ b/Tools/unicode/makeunicodedata.py
@@ -41,7 +41,7 @@
 # When changing UCD version please update
 #   * Doc/library/stdtypes.rst, and
 #   * Doc/library/unicodedata.rst
-#   * Doc/reference/lexical_analysis.rst
+#   * Doc/reference/lexical_analysis.rst (two occurrences)
 UNIDATA_VERSION = "6.3.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