summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-01 14:50:00 (GMT)
committerGeorg Brandl <georg@python.org>2010-08-01 14:50:00 (GMT)
commit0bccc185b4d333a6c50c18c8d1d9916aca96a99c (patch)
tree799b6adc978bd4c2ee65aa296baedf71d32c1319 /Misc/NEWS
parent120d633871a950d82194f2507c5ccaea284c69d6 (diff)
downloadcpython-0bccc185b4d333a6c50c18c8d1d9916aca96a99c.zip
cpython-0bccc185b4d333a6c50c18c8d1d9916aca96a99c.tar.gz
cpython-0bccc185b4d333a6c50c18c8d1d9916aca96a99c.tar.bz2
#8046: add context manager protocol support to mmap objects. Also add closed property.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eb4fdca..2affe70 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,12 @@ Core and Builtins
- format(complex(-0.0, 2.0), '-') omitted the real part from the output,
- format(complex(0.0, 2.0), '-') included a sign and parentheses.
+Extensions
+----------
+
+- Issue #8046: Add context manager protocol support and .closed property
+ to mmap objects.
+
Library
-------