summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-09-04 18:52:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-09-04 18:52:14 (GMT)
commite619427f7eb17c370f31c6d4f7625eda8a0e9dce (patch)
tree7c14183bbff4e2935a6173f287ae210080b337d5 /Misc
parent73821c47dcf56b02a30ab9ab524f0c0fc2875c22 (diff)
parente93b63b74b101c65807af7d9311de70012a2e49d (diff)
downloadcpython-e619427f7eb17c370f31c6d4f7625eda8a0e9dce.zip
cpython-e619427f7eb17c370f31c6d4f7625eda8a0e9dce.tar.gz
cpython-e619427f7eb17c370f31c6d4f7625eda8a0e9dce.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 af79d36..32effc6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,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 #16853: Add new selectors module.
- Issue #18882: Add threading.main_thread() function.