diff options
author | Jeffrey Yasskin <jyasskin@gmail.com> | 2008-12-11 06:18:33 (GMT) |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@gmail.com> | 2008-12-11 06:18:33 (GMT) |
commit | b9083f3e303a6c8e30be9c88b1e0e6383dc0593e (patch) | |
tree | e58582393bea2bc9600d61f7764c600e5f0e514e /Misc | |
parent | 708d58179d164087c039ff0548b36d67930df48b (diff) | |
download | cpython-b9083f3e303a6c8e30be9c88b1e0e6383dc0593e.zip cpython-b9083f3e303a6c8e30be9c88b1e0e6383dc0593e.tar.gz cpython-b9083f3e303a6c8e30be9c88b1e0e6383dc0593e.tar.bz2 |
Merged revisions 67666,67685 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67666 | jeffrey.yasskin | 2008-12-08 10:55:24 -0800 (Mon, 08 Dec 2008) | 3 lines
Issue 4597: Fix several cases in EvalFrameEx where an exception could be
"raised" without setting x, err, or why to let the eval loop know.
........
r67685 | jeffrey.yasskin | 2008-12-09 23:35:02 -0800 (Tue, 09 Dec 2008) | 2 lines
Update Misc/NEWS for r67666.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -12,7 +12,10 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- -- Issue #4597: Fixed exception handling when the __exit__ function of a +- Issue #4597: Fixed several opcodes that weren't always propagating + exceptions. + +- Issue #4589: Fixed exception handling when the __exit__ function of a context manager returns a value that cannot be converted to a bool. - Issue #4445: Replace "sizeof(PyBytesObject)" with |