From b1f74662c9dbaf9b858dd5b96329af4f709dd97a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Fri, 5 Jun 2020 15:06:51 -0400 Subject: [PATCH] Re-add versionchanged entry in csv docs follow-up to GH-8014 --- Doc/library/csv.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 61d39828e0194a..7a72c26d5badeb 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`.