summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-31 20:08:15 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-31 20:08:15 (GMT)
commit6cb7b6593ee03aedebae1bc9bd0f76912efa275a (patch)
tree30793f9f226d6e647e4bd3a9c6d14d3f24a9f775 /Misc
parente42a59daec40d1238a0189cde735f97aebe2d0b7 (diff)
downloadcpython-6cb7b6593ee03aedebae1bc9bd0f76912efa275a.zip
cpython-6cb7b6593ee03aedebae1bc9bd0f76912efa275a.tar.gz
cpython-6cb7b6593ee03aedebae1bc9bd0f76912efa275a.tar.bz2
#1286: allow using fileinput.FileInput as context manager.
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 2886e61..768c7df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
+- Issue #1286: Allow using fileinput.FileInput as a context manager.
+
- Add lfu_cache() and lru_cache() decorators to the functools module.