diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-09-08 10:17:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-08 10:17:24 (GMT) |
commit | 3be4b107490be27470cb9a101a8dfecf446fd992 (patch) | |
tree | a376b31bfdc272737e698c942176e7e6ec02f55e | |
parent | cc51a6d7c7b6b06fb537860428347d88776d802b (diff) | |
download | cpython-3be4b107490be27470cb9a101a8dfecf446fd992.zip cpython-3be4b107490be27470cb9a101a8dfecf446fd992.tar.gz cpython-3be4b107490be27470cb9a101a8dfecf446fd992.tar.bz2 |
[3.8] Correct Roman-numeral example in Unicode HOWTO. (GH-15541). (GH-15728)
(cherry picked from commit 32a960f8e1015b64b4b955b3d62920c5903d4c6f)
Co-authored-by: Greg Price <gnprice@gmail.com>
-rw-r--r-- | Doc/howto/unicode.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 24c3235..51bd64b 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 EIGHT - 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 |