summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-28 14:29:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-28 14:29:00 (GMT)
commit5acd41e0a1663127ac0c01b00e934ee1e7f537a9 (patch)
treee0bd0969b40f38ce562bf1b2284110350ff176c7 /Misc/NEWS
parentccc47b6eee267d6661c8521578e2fc9d53494029 (diff)
downloadcpython-5acd41e0a1663127ac0c01b00e934ee1e7f537a9.zip
cpython-5acd41e0a1663127ac0c01b00e934ee1e7f537a9.tar.gz
cpython-5acd41e0a1663127ac0c01b00e934ee1e7f537a9.tar.bz2
Merged revisions 67979 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67979 | antoine.pitrou | 2008-12-28 15:09:36 +0100 (dim., 28 déc. 2008) | 3 lines Issue #4444: Allow assertRaises() to be used as a context handler. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0f296b5..1560a04 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,6 +64,9 @@ Core and Builtins
Library
-------
+- Issue #4444: Allow assertRaises() to be used as a context handler, so that
+ the code under test can be written inline if more practical.
+
- Issue #4756: zipfile.is_zipfile() now supports file-like objects. Patch by
Gabriel Genellina.