diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-30 16:19:14 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-30 16:19:14 (GMT) |
commit | 8d2b51b46a1ba0e09f7ee8cb78c848768a675604 (patch) | |
tree | 401ea84f8c345a7f5727db61261109ab9efd8798 /Misc | |
parent | daf83acf003466777db394cb5e41d72ee6aea035 (diff) | |
download | cpython-8d2b51b46a1ba0e09f7ee8cb78c848768a675604.zip cpython-8d2b51b46a1ba0e09f7ee8cb78c848768a675604.tar.gz cpython-8d2b51b46a1ba0e09f7ee8cb78c848768a675604.tar.bz2 |
Issue #10253: FileIO leaks a file descriptor when trying to open a file
for append that isn't seekable. Patch by Brian Brazil.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -57,6 +57,9 @@ Core and Builtins Library ------- +- Issue #10253: FileIO leaks a file descriptor when trying to open a file + for append that isn't seekable. Patch by Brian Brazil. + - Support context manager protocol for file-like objects returned by mailbox ``get_file()`` methods. |