diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-14 20:22:12 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-14 20:22:12 (GMT) |
commit | 05bab93339308d330d6bd718575212ae2b3dc46d (patch) | |
tree | bb17df498b687ce4b5fafaa7f4629a5cfba84851 /Misc | |
parent | c5ceb0aaafa3064c8f301ebbedf44f421d3f3eba (diff) | |
download | cpython-05bab93339308d330d6bd718575212ae2b3dc46d.zip cpython-05bab93339308d330d6bd718575212ae2b3dc46d.tar.gz cpython-05bab93339308d330d6bd718575212ae2b3dc46d.tar.bz2 |
Issue #14200: Idle shell crash on printing non-BMP unicode character.
UnicodeEncodeError is raised for strings contains non-BMP characters.
For eval results unicode escaping is used, print() calls display
exception with traceback as usual.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,8 @@ Core and Builtins Library ------- +- Issue #14200: Idle shell crash on printing non-BMP unicode character. + - Issue #14291: Email now defaults to utf-8 for non-ASCII unicode headers instead of raising an error. This fixes a regression relative to 2.7. |