aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-04-14 14:12:58 +0900
committerGitHub <noreply@github.com>2021-04-14 14:12:58 +0900
commit333d10cbb53dd5f28d76f659a49bf0735f8509d8 (patch)
treeddc1e42d033ce82d4f8b29fd281eb6754ea85d2b /Misc
parent133705b85cc25d1e6684d32f8943ca288fadfda0 (diff)
downloadcpython3-333d10cbb53dd5f28d76f659a49bf0735f8509d8.tar.gz
bpo-43712 : fileinput: Add encoding parameter (GH-25272)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-08-12-25-08.bpo-43712.f8WXCX.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 42f0efdd53..2502ba816a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -33,6 +33,7 @@ Nir Aides
Akira
Yaniv Aknin
Jyrki Alakuijala
+Tatiana Al-Chueyr
Steve Alexander
Fred Allen
Jeff Allen
diff --git a/Misc/NEWS.d/next/Library/2021-04-08-12-25-08.bpo-43712.f8WXCX.rst b/Misc/NEWS.d/next/Library/2021-04-08-12-25-08.bpo-43712.f8WXCX.rst
new file mode 100644
index 0000000000..d11df0d102
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-08-12-25-08.bpo-43712.f8WXCX.rst
@@ -0,0 +1,2 @@
+Add ``encoding`` and ``errors`` parameters to :func:`fileinput.input` and
+:class:`fileinput.FileInput`.