diff options
author | Benjamin Peterson <benjamin@python.org> | 2021-09-14 18:00:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 18:00:38 (GMT) |
commit | 024fda47d40b8cee77ac1cd3d31ee549edc11986 (patch) | |
tree | f61f8b2e01e786703a976b73d651d87237856271 /Doc/library | |
parent | 797c8eb9ef511f0c25f10a453b35c4d2fe383c30 (diff) | |
download | cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.zip cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.tar.gz cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.tar.bz2 |
closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)
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 4900bc2..c5b5dbc 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 https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt + See https://www.unicode.org/Public/14.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 dade3f2..6276f63 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 13.0.0 -<https://www.unicode.org/Public/13.0.0/ucd>`_. +this database is compiled from the `UCD version 14.0.0 +<https://www.unicode.org/Public/14.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 -.. [#] https://www.unicode.org/Public/13.0.0/ucd/NameAliases.txt +.. [#] https://www.unicode.org/Public/14.0.0/ucd/NameAliases.txt -.. [#] https://www.unicode.org/Public/13.0.0/ucd/NamedSequences.txt +.. [#] https://www.unicode.org/Public/14.0.0/ucd/NamedSequences.txt |