commit | 213fec4bff53e24626172a9963e4e90d62a3e082 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Sep 04 20:46:33 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Sep 04 20:46:33 2013 +0200 |
tree | 43ded3d049f8561455bdc20851ac14ce27516dfc | |
parent | ab70a7dc41d697ba597aa271f2aea191f6734932 [diff] [blame] |
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. Patch by Erik Bray.
diff --git a/Misc/NEWS b/Misc/NEWS index afb7464..7ef400e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Library ------- +- Issue #18876: The FileIO.mode attribute now better reflects the actual mode + under which the file was opened. Patch by Erik Bray. + - Issue #18851: Avoid a double close of subprocess pipes when the child process fails starting.