diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-01 16:53:42 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-01 16:53:42 (GMT) |
commit | c881f1592f9a2890e1c26ae899351e1cf8b5d622 (patch) | |
tree | 7b634333f4a51c8095b37de53d5f40aa8012e9ee /Misc/NEWS | |
parent | e6c5950af0337f6d991f98d8b93b24825334e270 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |