summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-30 19:35:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-30 19:35:50 (GMT)
commit43ca4528873b8d0bc8c9e63b3871f4fe4286259c (patch)
tree1b2f178f1b92934b39ac82a7279c4634a9d87c83 /Misc
parent15f44ab043b37c064d6891c7864205fed9fb0dd1 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 00b6686..699026d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.