diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-04 18:46:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-04 18:46:33 (GMT) |
commit | 213fec4bff53e24626172a9963e4e90d62a3e082 (patch) | |
tree | 43ded3d049f8561455bdc20851ac14ce27516dfc /Misc | |
parent | ab70a7dc41d697ba597aa271f2aea191f6734932 (diff) | |
download | cpython-213fec4bff53e24626172a9963e4e90d62a3e082.zip cpython-213fec4bff53e24626172a9963e4e90d62a3e082.tar.gz cpython-213fec4bff53e24626172a9963e4e90d62a3e082.tar.bz2 |
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened.
Patch by Erik Bray.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -124,6 +124,7 @@ Monty Brandenberg Georg Brandl Christopher Brannon Terrence Brannon +Erik Bray Brian Brazil Dave Brennan Tom Bridgman @@ -32,6 +32,9 @@ Core and Builtins 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. |