summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-10 16:22:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-10 16:22:51 (GMT)
commit308705e4fab1fe784218bde5cc8c8d2daddf6700 (patch)
treec179157d874086e0e6472b292287e1eb3e7806c0 /Misc
parentab868311a5282f188a8cf831b021938420fee5c4 (diff)
downloadcpython-308705e4fab1fe784218bde5cc8c8d2daddf6700.zip
cpython-308705e4fab1fe784218bde5cc8c8d2daddf6700.tar.gz
cpython-308705e4fab1fe784218bde5cc8c8d2daddf6700.tar.bz2
Merged revisions 68484-68485 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68484 | antoine.pitrou | 2009-01-10 17:13:45 +0100 (sam., 10 janv. 2009) | 3 lines Issue #3860: GzipFile and BZ2File now support the context manager protocol. ........ r68485 | antoine.pitrou | 2009-01-10 17:15:24 +0100 (sam., 10 janv. 2009) | 1 line Add NEWS entry for r68484. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 16e1edd..d29fcf8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -111,6 +111,8 @@ Core and Builtins
Library
-------
+- Issue #3860: GzipFile and BZ2File now support the context manager protocol.
+
- Issue #4867: Fixed a crash in ctypes when passing a string to a
function without defining argtypes.