diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-17 23:23:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-17 23:23:37 (GMT) |
commit | 25bb0fdb67d03a47ee2193219fa0af2f191d4568 (patch) | |
tree | be67ba53efbffa6755a1dce8ec340a0bba2f9453 /Misc | |
parent | 9b16326e5d0a640bc78bbc357edb1f6455fd9a6b (diff) | |
download | cpython-25bb0fdb67d03a47ee2193219fa0af2f191d4568.zip cpython-25bb0fdb67d03a47ee2193219fa0af2f191d4568.tar.gz cpython-25bb0fdb67d03a47ee2193219fa0af2f191d4568.tar.bz2 |
Merged revisions 82059,82061 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82059 | victor.stinner | 2010-06-18 01:08:50 +0200 (ven., 18 juin 2010) | 5 lines
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 :-)
........
r82061 | victor.stinner | 2010-06-18 01:17:37 +0200 (ven., 18 juin 2010) | 2 lines
Issue #6543: Mention the author of the patch, Amaury Forgeot d'Arc
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.1.3? Core and Builtins ----------------- +- Issue #6543: Write the traceback in the terminal encoding instead of utf-8. + Fix the encoding of the modules filename. Patch written by Amaury Forgeot + d'Arc. + - 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 |