]> granicus.if.org Git - python/commitdiff
whatsnew: argparse FileType accepts errors and encodings args.
authorR David Murray <rdmurray@bitdance.com>
Tue, 31 Dec 2013 16:18:01 +0000 (11:18 -0500)
committerR David Murray <rdmurray@bitdance.com>
Tue, 31 Dec 2013 16:18:01 +0000 (11:18 -0500)
Doc/library/argparse.rst
Doc/whatsnew/3.4.rst

index 51abc7a90965a0c8700c08b6b9a613fb31deeef7..b1b5135eac181f1cecfb2c95f20a157fa861d126 100644 (file)
@@ -1671,6 +1671,9 @@ FileType objects
       >>> parser.parse_args(['-'])
       Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>)
 
+   .. versionadded:: 3.4
+      The *encodings* and *errors* keyword arguments.
+
 
 Argument groups
 ^^^^^^^^^^^^^^^
index 5b682439450c243fe6e92e351f06164b450670ca..19d71ccbf1d288a27917adf070e06f55407b4686 100644 (file)
@@ -495,6 +495,14 @@ The :meth:`~aifc.getparams` method now returns a namedtuple rather than a
 plain tuple.  (Contributed by Claudiu Popa in :issue:`17818`.)
 
 
+argparse
+--------
+
+The :class:`~argparse.FileType` class now accepts *encoding* and
+*errors* arguments, which are passed through to :func:`open`.  (Contributed
+by Lucas Maystre in :issue:`11175`.)
+
+
 audioop
 -------