commit | 0bccc185b4d333a6c50c18c8d1d9916aca96a99c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Aug 01 14:50:00 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Aug 01 14:50:00 2010 +0000 |
tree | 799b6adc978bd4c2ee65aa296baedf71d32c1319 | |
parent | 120d633871a950d82194f2507c5ccaea284c69d6 [diff] [blame] |
#8046: add context manager protocol support to mmap objects. Also add closed property.
diff --git a/Misc/NEWS b/Misc/NEWS index eb4fdca..2affe70 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,12 @@ - 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 -------