diff options
author | Georg Brandl <georg@python.org> | 2010-08-01 14:50:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-01 14:50:00 (GMT) |
commit | 0bccc185b4d333a6c50c18c8d1d9916aca96a99c (patch) | |
tree | 799b6adc978bd4c2ee65aa296baedf71d32c1319 /Misc/NEWS | |
parent | 120d633871a950d82194f2507c5ccaea284c69d6 (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 ------- |