#11175: argparse.FileType now accepts encoding and errors arguments.

Patch by Lucas Maystre.
diff --git a/Misc/ACKS b/Misc/ACKS
index ac657c3..99b34a3 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -768,6 +768,7 @@
 Graham Matthews
 Dieter Maurer
 Daniel May
+Lucas Maystre
 Arnaud Mazin
 Rebecca McCreary
 Kirk McDonald
diff --git a/Misc/NEWS b/Misc/NEWS
index 7b71524..d52a9d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -167,6 +167,9 @@
 Library
 -------
 
+- Issue #11175: argparse.FileType now accepts encoding and errors
+  arguments. Patch by Lucas Maystre.
+
 - Issue #16488: epoll() objects now support the `with` statement.  Patch
   by Serhiy Storchaka.