From: Éric Araujo Date: Wed, 10 Jun 2020 01:02:11 +0000 (-0400) Subject: bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) X-Git-Tag: v3.10.0a1~674 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7aed0524d4129766a6032326949ef7f91f6f6dfc;p=thirdparty%2FPython%2Fcpython.git bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) Follow-up to GH-8014 --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 61d39828e019..7a72c26d5bad 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -167,6 +167,9 @@ The :mod:`csv` module defines the following classes: All other optional or keyword arguments are passed to the underlying :class:`reader` instance. + .. versionchanged:: 3.6 + Returned rows are now of type :class:`OrderedDict`. + .. versionchanged:: 3.8 Returned rows are now of type :class:`dict`.