summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:08:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:08:33 (GMT)
commit946cfc3e238bbd67ff436af5fd05414bbd2e5a08 (patch)
treeb8bc5c17edf6498d5f09253315b9a4e46d75c86c /Misc
parente2d66903e8e336817702213f0cd8c3a24edf03ac (diff)
downloadcpython-946cfc3e238bbd67ff436af5fd05414bbd2e5a08.zip
cpython-946cfc3e238bbd67ff436af5fd05414bbd2e5a08.tar.gz
cpython-946cfc3e238bbd67ff436af5fd05414bbd2e5a08.tar.bz2
Issue #21075: fileinput.FileInput now reads bytes from standard stream if
binary mode is specified. Patch by Sam Kimbrel.
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 bbcd00e7..62d2b20 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -674,6 +674,7 @@ Mads Kiilerich
Jason Killen
Jan Kim
Taek Joo Kim
+Sam Kimbrel
W. Trevor King
Paul Kippes
Steve Kirsch
diff --git a/Misc/NEWS b/Misc/NEWS
index eff6573..161016a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #21075: fileinput.FileInput now reads bytes from standard stream if
+ binary mode is specified. Patch by Sam Kimbrel.
+
- Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a
flush() on the underlying binary stream. Patch by akira.