summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-24 03:02:40 (GMT)
committerGitHub <noreply@github.com>2022-07-24 03:02:40 (GMT)
commit4a682b4f1ae3c32d0abd874cda4d2419398f4469 (patch)
treebca419839b50ddc8f37888d77d532fc7e0c7a83c /Misc
parente71e6e2ce5dcb88125ddb83c09af1b906611108b (diff)
downloadcpython-4a682b4f1ae3c32d0abd874cda4d2419398f4469.zip
cpython-4a682b4f1ae3c32d0abd874cda4d2419398f4469.tar.gz
cpython-4a682b4f1ae3c32d0abd874cda4d2419398f4469.tar.bz2
gh-93157: Fix fileinput didn't support `errors` in `inplace` mode (GH-95128)
(cherry picked from commit 5c7f3bcdafedd60a385e8ca5403bc6b0b7a862b3) Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-07-22-17-19-57.gh-issue-93157.RXByAk.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-22-17-19-57.gh-issue-93157.RXByAk.rst b/Misc/NEWS.d/next/Library/2022-07-22-17-19-57.gh-issue-93157.RXByAk.rst
new file mode 100644
index 0000000..054b318
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-07-22-17-19-57.gh-issue-93157.RXByAk.rst
@@ -0,0 +1,2 @@
+Fix :mod:`fileinput` module didn't support ``errors`` option when
+``inplace`` is true.