summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 17:23:20 (GMT)
committerJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 17:23:20 (GMT)
commit6f5d3f326f8c98dc4c53b422a92306e391e83cc2 (patch)
treeb7d730cf288f7c8160b68f6cc1085b4b83043d22 /Misc
parent6f63190ded3ceea7a66a41b5a48c6c4541372def (diff)
downloadcpython-6f5d3f326f8c98dc4c53b422a92306e391e83cc2.zip
cpython-6f5d3f326f8c98dc4c53b422a92306e391e83cc2.tar.gz
cpython-6f5d3f326f8c98dc4c53b422a92306e391e83cc2.tar.bz2
Backport issue 4597 to python 2.5.3: Fixed several opcodes that weren't always
propagating exceptions.
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 f6ea810..518f355 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
+- Issue #4597: Fixed several opcodes that weren't always propagating
+ exceptions.
+
- Issue #4589: Propagated an exception thrown by a context manager's
__exit__ method's result while it's being converted to bool.