]> granicus.if.org Git - python/commitdiff
bpo-33798: Update csv document about dict order (GH-7490)
authorAndrés Delfino <adelfino@gmail.com>
Fri, 8 Jun 2018 12:51:12 +0000 (09:51 -0300)
committerINADA Naoki <methane@users.noreply.github.com>
Fri, 8 Jun 2018 12:51:12 +0000 (21:51 +0900)
Doc/library/csv.rst

index 08b8edc5227eb3a51a20ad58b3c4971d4a72983d..049537eff8984676a50a321d173eefb54a2d207d 100644 (file)
@@ -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::