summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-15 13:14:32 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-15 13:14:32 (GMT)
commit59e62db0a39eb89930ed3ae1730726cd15b7d640 (patch)
tree39ff8069400177c04225bfdd0473108a70df793f /Misc
parentb744ba1d14c5487576c95d0311e357b707600b47 (diff)
downloadcpython-59e62db0a39eb89930ed3ae1730726cd15b7d640.zip
cpython-59e62db0a39eb89930ed3ae1730726cd15b7d640.tar.gz
cpython-59e62db0a39eb89930ed3ae1730726cd15b7d640.tar.bz2
Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any
error handler, not only the default error handler (strict)
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 8b72124..31a063d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any
+ error handler, not only the default error handler (strict)
+
- Issue #8610: Load file system codec at startup, and display a fatal error on
failure. Set the file system encoding to utf-8 (instead of None) if getting
the locale encoding failed, or if nl_langinfo(CODESET) function is missing.