summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-09-04 18:46:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-09-04 18:46:33 (GMT)
commit213fec4bff53e24626172a9963e4e90d62a3e082 (patch)
tree43ded3d049f8561455bdc20851ac14ce27516dfc /Misc
parentab70a7dc41d697ba597aa271f2aea191f6734932 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8977c02..8d29290 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -124,6 +124,7 @@ Monty Brandenberg
Georg Brandl
Christopher Brannon
Terrence Brannon
+Erik Bray
Brian Brazil
Dave Brennan
Tom Bridgman
diff --git a/Misc/NEWS b/Misc/NEWS
index afb7464..7ef400e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.