From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 25 Mar 2020 07:00:53 +0000 (-0700) Subject: bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099) (GH-19141) X-Git-Tag: v3.8.3rc1~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2227c1a4ca87034ed9eac55eb260a5fb0a04375d;p=thirdparty%2FPython%2Fcpython.git bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099) (GH-19141) (cherry picked from commit 4b3252cb764807fdb3a661b458d43e4af55cf4df) Co-authored-by: Juhana Jauhiainen --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 49e22fa73ed2..61d39828e019 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -161,7 +161,8 @@ The :mod:`csv` module defines the following classes: If a row has more fields than fieldnames, the remaining data is put in a list and stored with the fieldname specified by *restkey* (which defaults to ``None``). If a non-blank row has fewer fields than fieldnames, the - missing values are filled-in with ``None``. + missing values are filled-in with the value of *restval* (which defaults + to ``None``). All other optional or keyword arguments are passed to the underlying :class:`reader` instance.