summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2013-08-02 02:34:46 (GMT)
committerLarry Hastings <larry@hastings.org>2013-08-02 02:34:46 (GMT)
commit2e3e593e3490202757e25a82a8b3420418597cab (patch)
tree6047ae15b385cb48251b26b504210c70a72291d1 /Misc
parent39668f57f445b8a2db63b0d0dc32c55a90d3f59e (diff)
downloadcpython-2e3e593e3490202757e25a82a8b3420418597cab.zip
cpython-2e3e593e3490202757e25a82a8b3420418597cab.tar.gz
cpython-2e3e593e3490202757e25a82a8b3420418597cab.tar.bz2
Issue #17899: Fix rare file descriptor leak in os.listdir().
(Done as separate patch from trunk as the code has diverged quite a bit.)
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 82b1081..825f6b3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
+- Issue #17899: Fix rare file descriptor leak in os.listdir().
+
- Issue #18552: Check return value of PyArena_AddPyObject() in
obj2ast_object().