summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-01 16:53:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-01 16:53:42 (GMT)
commitc881f1592f9a2890e1c26ae899351e1cf8b5d622 (patch)
tree7b634333f4a51c8095b37de53d5f40aa8012e9ee /Misc/NEWS
parente6c5950af0337f6d991f98d8b93b24825334e270 (diff)
downloadcpython-c881f1592f9a2890e1c26ae899351e1cf8b5d622.zip
cpython-c881f1592f9a2890e1c26ae899351e1cf8b5d622.tar.gz
cpython-c881f1592f9a2890e1c26ae899351e1cf8b5d622.tar.bz2
Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when
re-initializing a buffered IO object by calling its `__init__` method.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 94bf2b9..7d1317d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Extensions
Library
-------
+- Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when
+ re-initializing a buffered IO object by calling its ``__init__`` method.
+
- Issue #1713: Fix os.path.ismount(), which returned true for symbolic links
across devices.