diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-21 18:57:36 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-21 18:57:36 (GMT) |
commit | 931b8aac8058cf2b0eb4349217893aaf16f23444 (patch) | |
tree | 5cbd87e3f2c4018e1382c811c6ae214d1400396f /Doc/library/unicodedata.rst | |
parent | 3764a964ca4e8c979743ba8c2f08b65ddf8b0070 (diff) | |
download | cpython-931b8aac8058cf2b0eb4349217893aaf16f23444.zip cpython-931b8aac8058cf2b0eb4349217893aaf16f23444.tar.gz cpython-931b8aac8058cf2b0eb4349217893aaf16f23444.tar.bz2 |
#12753: Add support for Unicode name aliases and named sequences.
Diffstat (limited to 'Doc/library/unicodedata.rst')
-rw-r--r-- | Doc/library/unicodedata.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index bcb3da3..d0783a2 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -29,6 +29,9 @@ following functions: Look up character by name. If a character with the given name is found, return the corresponding character. If not found, :exc:`KeyError` is raised. + .. versionchanged:: 3.3 + Support for name aliases [#]_ and named sequences [#]_ has been added. + .. function:: name(chr[, default]) @@ -160,3 +163,9 @@ Examples: >>> unicodedata.bidirectional('\u0660') # 'A'rabic, 'N'umber 'AN' + +.. rubric:: Footnotes + +.. [#] http://www.unicode.org/Public/6.0.0/ucd/NameAliases.txt + +.. [#] http://www.unicode.org/Public/6.0.0/ucd/NamedSequences.txt |