diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-06-08 12:51:12 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2018-06-08 12:51:12 (GMT) |
commit | 6860629d87d0f6728ff7430453d4900b695adf7b (patch) | |
tree | 032dcfaae69c79ccb0c4d93e56e27147ba1eda90 /Doc/library | |
parent | 214f18e49feb6a9d6c05aa09a4bb304905e81334 (diff) | |
download | cpython-6860629d87d0f6728ff7430453d4900b695adf7b.zip cpython-6860629d87d0f6728ff7430453d4900b695adf7b.tar.gz cpython-6860629d87d0f6728ff7430453d4900b695adf7b.tar.bz2 |
bpo-33798: Update csv document about dict order (GH-7490)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/csv.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 08b8edc..049537e 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:: |