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)
commite93b63b74b101c65807af7d9311de70012a2e49d (patch)
tree9add8e90484b309ab34081c03c05faa19624a61b /Misc
parentc9e1dcdd5323b11d1d4e901dbc74287a2672bc04 (diff)
downloadcpython-e93b63b74b101c65807af7d9311de70012a2e49d.zip
cpython-e93b63b74b101c65807af7d9311de70012a2e49d.tar.gz
cpython-e93b63b74b101c65807af7d9311de70012a2e49d.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3961ef9..9a3ace5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,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 #18418: After fork(), reinit all threads states, not only active ones.
Patch by A. Jesse Jiryu Davis.