diff options
author | Benjamin Peterson <benjamin@python.org> | 2020-03-10 20:41:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 20:41:34 -0700 |
commit | 051b9d08d1e6a8b1022a2bd9166be51c0b152698 (patch) | |
tree | 3f7eb694da64c60b304d073bac8cf703cbbc8f5f /Doc/library | |
parent | 76d5877b72cbe66eb3b6d8caa8d19f89a938ada2 (diff) | |
download | cpython-git-051b9d08d1e6a8b1022a2bd9166be51c0b152698.tar.gz |
closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 | ||||
-rw-r--r-- | Doc/library/unicodedata.rst | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 881c15d8f7..2f46babf5d 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -352,7 +352,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/12.1.0/ucd/extracted/DerivedNumericType.txt + See http://www.unicode.org/Public/13.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 225384cf39..124170f198 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -17,8 +17,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 12.1.0 -<http://www.unicode.org/Public/12.1.0/ucd>`_. +this database is compiled from the `UCD version 13.0.0 +<http://www.unicode.org/Public/13.0.0/ucd>`_. The module uses the same names and symbols as defined by Unicode Standard Annex #44, `"Unicode Character Database" @@ -175,6 +175,6 @@ Examples: .. rubric:: Footnotes -.. [#] http://www.unicode.org/Public/12.1.0/ucd/NameAliases.txt +.. [#] http://www.unicode.org/Public/13.0.0/ucd/NameAliases.txt -.. [#] http://www.unicode.org/Public/12.1.0/ucd/NamedSequences.txt +.. [#] http://www.unicode.org/Public/13.0.0/ucd/NamedSequences.txt |