diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-10-09 20:47:31 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-10-09 20:47:31 -0400 |
commit | f61d22612d4cfaaf0dd1e6a3e81214f4504f73a5 (patch) | |
tree | 499b3ea780769bbc88c1d849f198376cca10880e | |
parent | bd637b462304ad13f48a3f1411a5bceca6121728 (diff) | |
parent | 87a934a0e752cca805185ef9f594e42bc3dd996b (diff) | |
download | cpython-f61d22612d4cfaaf0dd1e6a3e81214f4504f73a5.tar.gz |
Merge: #18176: Change generic UCD PropList link to version specific link.
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 | ||||
-rw-r--r-- | 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 index ee1914a29c..561a75e3d1 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -310,7 +310,9 @@ The Unicode category codes mentioned above stand for: * *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/7.0.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 index 72e80d743f..b7d31e8806 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -41,7 +41,7 @@ VERSION = "3.2" # 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 = "7.0.0" UNICODE_DATA = "UnicodeData%s.txt" COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt" |