diff options
author | Éric Araujo <merwok@netwok.org> | 2020-06-10 01:02:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 01:02:11 (GMT) |
commit | 7aed0524d4129766a6032326949ef7f91f6f6dfc (patch) | |
tree | cd23f7ceb6786b6cdeb8f5454ddd7cd1680bfbe1 /Doc | |
parent | 0383be4666905f9e24ca791afda845a7686b3fe3 (diff) | |
download | cpython-7aed0524d4129766a6032326949ef7f91f6f6dfc.zip cpython-7aed0524d4129766a6032326949ef7f91f6f6dfc.tar.gz cpython-7aed0524d4129766a6032326949ef7f91f6f6dfc.tar.bz2 |
bpo-34003: Re-add versionchanged entry in csv docs (GH-20657)
Follow-up to GH-8014
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/csv.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 61d3982..7a72c26 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`. |