diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-06-23 06:11:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-23 06:11:52 (GMT) |
commit | bae5ddab2c7b602cc846beef7285b4d2ae376d66 (patch) | |
tree | 072f3c795610cbe15cad35b33babdc980fec0c1b /Doc/reference | |
parent | d79ac2c2468f072653ed9096cd33f89acb6ff5bb (diff) | |
download | cpython-bae5ddab2c7b602cc846beef7285b4d2ae376d66.zip cpython-bae5ddab2c7b602cc846beef7285b4d2ae376d66.tar.gz cpython-bae5ddab2c7b602cc846beef7285b4d2ae376d66.tar.bz2 |
fix some reference to Unicode 8 that should be to Unicode 9 (#2346)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 7f9c664..fff31a3 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -313,7 +313,7 @@ The Unicode category codes mentioned above stand for: * *Nd* - decimal numbers * *Pc* - connector punctuations * *Other_ID_Start* - explicit list of characters in `PropList.txt - <http://www.unicode.org/Public/8.0.0/ucd/PropList.txt>`_ to support backwards + <http://www.unicode.org/Public/9.0.0/ucd/PropList.txt>`_ to support backwards compatibility * *Other_ID_Continue* - likewise @@ -875,4 +875,4 @@ occurrence outside string literals and comments is an unconditional error: .. rubric:: Footnotes -.. [#] http://www.unicode.org/Public/8.0.0/ucd/NameAliases.txt +.. [#] http://www.unicode.org/Public/9.0.0/ucd/NameAliases.txt |