diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-12-08 22:25:45 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-12-08 22:25:45 (GMT) |
commit | 53a9dd776e62f6bc3b1884f3aa82e49a78bd83a8 (patch) | |
tree | b62f83eb883c6ffceb9c0fff6083c4f914c832a2 /Doc/library | |
parent | 84cc06288d88cb12b382bf3e4695f8538ab498ff (diff) | |
download | cpython-53a9dd776e62f6bc3b1884f3aa82e49a78bd83a8.zip cpython-53a9dd776e62f6bc3b1884f3aa82e49a78bd83a8.tar.gz cpython-53a9dd776e62f6bc3b1884f3aa82e49a78bd83a8.tar.bz2 |
Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP characters
Fix the doc and add tests.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/codecs.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 5416d3b..26e31a4 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -1114,9 +1114,9 @@ particular, the following variants typically exist: +-----------------+--------------------------------+--------------------------------+ | utf_16 | U16, utf16 | all languages | +-----------------+--------------------------------+--------------------------------+ -| utf_16_be | UTF-16BE | all languages (BMP only) | +| utf_16_be | UTF-16BE | all languages | +-----------------+--------------------------------+--------------------------------+ -| utf_16_le | UTF-16LE | all languages (BMP only) | +| utf_16_le | UTF-16LE | all languages | +-----------------+--------------------------------+--------------------------------+ | utf_7 | U7, unicode-1-1-utf-7 | all languages | +-----------------+--------------------------------+--------------------------------+ |