summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-02-24 15:53:54 (GMT)
committerEric Smith <eric@trueblade.com>2010-02-24 15:53:54 (GMT)
commitf2387da424269d2b124a009c6778ebd2ed5abd50 (patch)
tree10947458bf40bfe0a15151656dffcc1c75764ea6 /Misc
parentb61a04d72aab94a427513099d09edab0e7a9c90e (diff)
downloadcpython-f2387da424269d2b124a009c6778ebd2ed5abd50.zip
cpython-f2387da424269d2b124a009c6778ebd2ed5abd50.tar.gz
cpython-f2387da424269d2b124a009c6778ebd2ed5abd50.tar.bz2
Merged revisions 78420 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r78420 | eric.smith | 2010-02-24 10:42:29 -0500 (Wed, 24 Feb 2010) | 9 lines Merged revisions 78418 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78418 | eric.smith | 2010-02-24 09:15:36 -0500 (Wed, 24 Feb 2010) | 1 line Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 329cb40..edd6fa3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
-----------------
=======
+- Issue #7309: Fix unchecked attribute access when converting
+ UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to
+ strings.
+
- Issue #6902: Fix problem with built-in types format incorrectly with
0 padding.