[Python-checkins] [3.8] bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) (GH-20771)
Miss Islington (bot)
webhook-mailer at python.org
Tue Jun 9 21:26:20 EDT 2020
https://github.com/python/cpython/commit/663836e1179ea79eac12e55670af7e89a531a060
commit: 663836e1179ea79eac12e55670af7e89a531a060
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020年06月09日T18:26:16-07:00
summary:
[3.8] bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) (GH-20771)
Follow-up to GH-8014
(cherry picked from commit 7aed0524d4129766a6032326949ef7f91f6f6dfc)
Co-authored-by: Éric Araujo <merwok at netwok.org>
Automerge-Triggered-By: @merwok
files:
M Doc/library/csv.rst
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index 61d39828e0194..7a72c26d5bade 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`.
More information about the Python-checkins
mailing list