diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-17 23:08:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-17 23:08:50 (GMT) |
commit | 0fe25a445d5e72450a8d611faed75f65ba57c0bc (patch) | |
tree | bb0225a38220360cb4ae5451b68d2c954bf3525d /Misc | |
parent | 870f09a7f4296712de404dccea1c3a7bf52f66c3 (diff) | |
download | cpython-0fe25a445d5e72450a8d611faed75f65ba57c0bc.zip cpython-0fe25a445d5e72450a8d611faed75f65ba57c0bc.tar.gz cpython-0fe25a445d5e72450a8d611faed75f65ba57c0bc.tar.bz2 |
Issue #6543: Write the traceback in the terminal encoding instead of utf-8.
Fix the encoding of the modules filename.
Reindent also traceback.h, just because I hate tabs :-)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #6543: Write the traceback in the terminal encoding instead of utf-8. + Fix the encoding of the modules filename. + - Issue #9011: Remove buggy and unnecessary (in 3.x) ST->AST compilation code dealing with unary minus applied to a constant. The removed code was mutating the ST, causing a second compilation |