summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-25 22:40:38 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-25 22:40:38 (GMT)
commitc3e40e0454de9c6f3e46f8a6e3409b5975835af9 (patch)
tree389885f1de22df4c98e62285c73aa9911e520958 /Misc
parent7620f66397fbbd49ed4894a80de3d56356e6273e (diff)
downloadcpython-c3e40e0454de9c6f3e46f8a6e3409b5975835af9.zip
cpython-c3e40e0454de9c6f3e46f8a6e3409b5975835af9.tar.gz
cpython-c3e40e0454de9c6f3e46f8a6e3409b5975835af9.tar.bz2
Merged revisions 81537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81537 | victor.stinner | 2010-05-26 00:30:32 +0200 (mer., 26 mai 2010) | 3 lines Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and error handler, instead of writing to the C stderr file in utf-8 ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eba95a0..34a7c85 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.6 alpha 1?
Core and Builtins
-----------------
+- Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding
+ and error handler, instead of writing to the C stderr file in utf-8
+
- Issue #7902: When using explicit relative import syntax, don't try
implicit relative import semantics.