summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2009-06-19 20:34:30 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2009-06-19 20:34:30 (GMT)
commit10706e28d33905d7e949c4f6544d182759c8ebc2 (patch)
treed76d696dd4dde3815bf1a7324def1daee26ab136 /Misc
parente9ff86e3a16c261fadca15716e5c8ffb75cd4dfc (diff)
downloadcpython-10706e28d33905d7e949c4f6544d182759c8ebc2.zip
cpython-10706e28d33905d7e949c4f6544d182759c8ebc2.tar.gz
cpython-10706e28d33905d7e949c4f6544d182759c8ebc2.tar.bz2
Issue #6274. Fixed a potential FD leak in subprocess.py.
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 9ccb472..9adcfdf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
+- Issue #6274: Fixed possible file descriptors leak in subprocess.py
+
- Accessing io.StringIO.buffer now raises an AttributeError instead of
io.UnsupportedOperation.