diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-06-27 20:45:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-06-27 20:45:56 (GMT) |
commit | 4801383c2953d3a45beafa1e945d60412460b9c3 (patch) | |
tree | 2f2233c9eb026801ebc4cbb9dc4a23047afaee92 /Doc | |
parent | 7b78d4364da086baf77202e6e9f6839128a366ff (diff) | |
download | cpython-4801383c2953d3a45beafa1e945d60412460b9c3.zip cpython-4801383c2953d3a45beafa1e945d60412460b9c3.tar.gz cpython-4801383c2953d3a45beafa1e945d60412460b9c3.tar.bz2 |
upgrade to Unicode 8.0.0
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 | ||||
-rw-r--r-- | Doc/library/unicodedata.rst | 8 | ||||
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 | ||||
-rw-r--r-- | Doc/whatsnew/3.5.rst | 7 |
4 files changed, 14 insertions, 7 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 89d031c..2c6e7c6 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -354,7 +354,7 @@ Notes: 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/7.0.0/ucd/extracted/DerivedNumericType.txt + See http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType.txt for a complete list of code points with the ``Nd`` property. diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index 24ddef8..1430d9b 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -15,8 +15,8 @@ This module provides access to the Unicode Character Database (UCD) which defines character properties for all Unicode characters. The data contained in -this database is compiled from the `UCD version 7.0.0 -<http://www.unicode.org/Public/7.0.0/ucd>`_. +this database is compiled from the `UCD version 8.0.0 +<http://www.unicode.org/Public/8.0.0/ucd>`_. The module uses the same names and symbols as defined by Unicode Standard Annex #44, `"Unicode Character Database" @@ -166,6 +166,6 @@ Examples: .. rubric:: Footnotes -.. [#] http://www.unicode.org/Public/7.0.0/ucd/NameAliases.txt +.. [#] http://www.unicode.org/Public/8.0.0/ucd/NameAliases.txt -.. [#] http://www.unicode.org/Public/7.0.0/ucd/NamedSequences.txt +.. [#] http://www.unicode.org/Public/8.0.0/ucd/NamedSequences.txt diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 769e0a7..27d6a8a 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -311,7 +311,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/7.0.0/ucd/PropList.txt>`_ to support backwards + <http://www.unicode.org/Public/8.0.0/ucd/PropList.txt>`_ to support backwards compatibility * *Other_ID_Continue* - likewise @@ -727,4 +727,4 @@ occurrence outside string literals and comments is an unconditional error:: .. rubric:: Footnotes -.. [#] http://www.unicode.org/Public/7.0.0/ucd/NameAliases.txt +.. [#] http://www.unicode.org/Public/8.0.0/ucd/NameAliases.txt diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 7268e97..abc1b8d 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -755,6 +755,13 @@ urllib control the encoding of query parts if needed. (Contributed by Samwyse and Arnon Yaari in :issue:`13866`.) +unicodedata +----------- + +* The :mod:`unicodedata` module now uses data from `Unicode 8.0.0 +<http://unicode.org/versions/Unicode8.0.0/>`_. + + wsgiref ------- |