[Python-checkins] Correct Roman-numeral example in Unicode HOWTO. (GH-15541)

Serhiy Storchaka webhook-mailer at python.org
Sun Sep 8 05:42:21 EDT 2019


https://github.com/python/cpython/commit/32a960f8e1015b64b4b955b3d62920c5903d4c6f
commit: 32a960f8e1015b64b4b955b3d62920c5903d4c6f
branch: master
author: Greg Price <gnprice at gmail.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2019-09-08T12:42:13+03:00
summary:

Correct Roman-numeral example in Unicode HOWTO. (GH-15541)

files:
M Doc/howto/unicode.rst

diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index d5632bc799d2..51bd64bfc232 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -57,14 +57,14 @@ their corresponding code points:
    ...
    007B    '{'; LEFT CURLY BRACKET
    ...
-   2167    'Ⅶ': ROMAN NUMERAL SEVEN
-   2168    'Ⅸ': ROMAN NUMERAL NINE
+   2167    'Ⅷ'; ROMAN NUMERAL EIGHT
+   2168    'Ⅸ'; ROMAN NUMERAL NINE
    ...
-   265E    '♞': BLACK CHESS KNIGHT
-   265F    '♟': BLACK CHESS PAWN
+   265E    '♞'; BLACK CHESS KNIGHT
+   265F    '♟'; BLACK CHESS PAWN
    ...
-   1F600   '😀': GRINNING FACE
-   1F609   '😉': WINKING FACE
+   1F600   '😀'; GRINNING FACE
+   1F609   '😉'; WINKING FACE
    ...
 
 Strictly, these definitions imply that it's meaningless to say 'this is



More information about the Python-checkins mailing list