diff options
author | amaajemyfren <32741226+amaajemyfren@users.noreply.github.com> | 2020-04-07 04:16:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 04:16:02 (GMT) |
commit | 8ea10a94463f1ea217bcaef86f2ebd9d43240b4e (patch) | |
tree | d5eb0bac6b288050f94dc0c1c6f5ab2661f4601a /Doc | |
parent | 799d7d61a91eb0ad3256ef9a45a90029cef93b7c (diff) | |
download | cpython-8ea10a94463f1ea217bcaef86f2ebd9d43240b4e.zip cpython-8ea10a94463f1ea217bcaef86f2ebd9d43240b4e.tar.gz cpython-8ea10a94463f1ea217bcaef86f2ebd9d43240b4e.tar.bz2 |
closes bpo-40166: Change Unicode Howto so that it does not have a specific number of assigned code points. (GH-19328)
Change the number of code points from a specific number to a link to the latest standard that has a description of how many code points there are.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/unicode.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 4825b39..e948c1e 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -41,8 +41,9 @@ but these are two different characters that have different meanings. The Unicode standard describes how characters are represented by **code points**. A code point value is an integer in the range 0 to -0x10FFFF (about 1.1 million values, with some 110 thousand assigned so -far). In the standard and in this document, a code point is written +0x10FFFF (about 1.1 million values, the +`actual number assigned <https://www.unicode.org/versions/latest/#Summary>`_ +is less than that). In the standard and in this document, a code point is written using the notation ``U+265E`` to mean the character with value ``0x265e`` (9,822 in decimal). |