diff options
author | Raymond Hettinger <python@rcn.com> | 2016-08-30 19:35:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-08-30 19:35:50 (GMT) |
commit | 43ca4528873b8d0bc8c9e63b3871f4fe4286259c (patch) | |
tree | 1b2f178f1b92934b39ac82a7279c4634a9d87c83 /Misc | |
parent | 15f44ab043b37c064d6891c7864205fed9fb0dd1 (diff) | |
download | cpython-43ca4528873b8d0bc8c9e63b3871f4fe4286259c.zip cpython-43ca4528873b8d0bc8c9e63b3871f4fe4286259c.tar.gz cpython-43ca4528873b8d0bc8c9e63b3871f4fe4286259c.tar.bz2 |
Issue #27842: The csv.DictReader now returns rows of type OrderedDict.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -64,6 +64,9 @@ Library match ``math.inf`` and ``math.nan``, and also ``cmath.infj`` and ``cmath.nanj`` to match the format used by complex repr. +- Issue #27842: The csv.DictReader now returns rows of type OrderedDict. + (Contributed by Steve Holden.) + - Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory creates not a cursor. Patch by Xiang Zhang. |