summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 07:28:12 (GMT)
committerJeffrey Yasskin <jyasskin@gmail.com>2008-12-10 07:28:12 (GMT)
commit478a1aa5373be89a6c7464fe1303aa585631acea (patch)
tree011c900524ea6f2d01a6773bcad964d80e6759ac /Misc
parent05e9c9dd970976885ade53a1bf09506d2aeb1c8a (diff)
downloadcpython-478a1aa5373be89a6c7464fe1303aa585631acea.zip
cpython-478a1aa5373be89a6c7464fe1303aa585631acea.tar.gz
cpython-478a1aa5373be89a6c7464fe1303aa585631acea.tar.bz2
Backported issue #4589 to Python 2.5.3: Propagated an exception thrown by a
context manager's __exit__ method's result while it's being converted to bool.
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 eee0085..60a4c67 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
+- Issue #4589: Propagated an exception thrown by a context manager's
+ __exit__ method's result while it's being converted to bool.
+
- Issue #4317: Fixed a crash in the imageop.rgb2rgb8() function.
- Issue #4230: If ``__getattr__`` is a descriptor, it now functions correctly.