summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-02-24 15:42:29 (GMT)
committerEric Smith <eric@trueblade.com>2010-02-24 15:42:29 (GMT)
commit0facd77015465ac7bd486f5cb98d6265f61428a9 (patch)
tree8c08010c5c2b49a0c6ff71447f0940228ea8e8df /Misc
parent33091a83213d2480360dc6768eebc5721a70f2fb (diff)
downloadcpython-0facd77015465ac7bd486f5cb98d6265f61428a9.zip
cpython-0facd77015465ac7bd486f5cb98d6265f61428a9.tar.gz
cpython-0facd77015465ac7bd486f5cb98d6265f61428a9.tar.bz2
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 5467809..d777a95 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
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.