summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-09 18:26:36 -0700
committerGitHub <noreply@github.com>2020-06-09 18:26:36 -0700
commit73b728a779aa7d6d8f088c4b21447bba4bf3a351 (patch)
tree0212e8323eea1a119189d6a9dbec0140ff1c683b
parent6c645cbdd22ec52eea7bfee4934f7e6a4f570232 (diff)
downloadcpython-git-73b728a779aa7d6d8f088c4b21447bba4bf3a351.tar.gz
[3.9] bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) (GH-20770)
Follow-up to GH-8014 (cherry picked from commit 7aed0524d4129766a6032326949ef7f91f6f6dfc) Co-authored-by: Éric Araujo <merwok@netwok.org> Automerge-Triggered-By: @merwok
-rw-r--r--Doc/library/csv.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index 61d39828e0..7a72c26d5b 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`.