From 40a1a2034fb0172f207aa835f4a51b31bc311d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Fri, 8 Jun 2018 09:51:12 -0300 Subject: [PATCH] bpo-33798: Update csv document about dict order (GH-7490) (cherry picked from commit 6860629d87d0f6728ff7430453d4900b695adf7b) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andrés Delfino --- Doc/library/csv.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 08b8edc5227eb3..049537eff89846 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -203,9 +203,7 @@ The :mod:`csv` module defines the following classes: :class:`writer` instance. Note that unlike the :class:`DictReader` class, the *fieldnames* parameter - of the :class:`DictWriter` is not optional. Since Python's :class:`dict` - objects are not ordered, there is not enough information available to deduce - the order in which the row should be written to file *f*. + of the :class:`DictWriter` class is not optional. A short usage example::