[Python-checkins] bpo-33798: Update csv document about dict order (GH-7490)

Miss Islington (bot) webhook-mailer at python.org
Fri Jun 8 09:33:43 EDT 2018


https://github.com/python/cpython/commit/9f56a93e8986e06ac61a7356082fe8be285f26a4
commit: 9f56a93e8986e06ac61a7356082fe8be285f26a4
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-06-08T06:33:32-07:00
summary:

bpo-33798: Update csv document about dict order (GH-7490)

(cherry picked from commit 6860629d87d0f6728ff7430453d4900b695adf7b)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

files:
M Doc/library/csv.rst

diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index 08b8edc5227e..049537eff898 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::
 



More information about the Python-checkins mailing list