summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMichael Selik <mike@selik.org>2019-01-31 08:47:53 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-01-31 08:47:53 (GMT)
commit9f3f0931cfc58498086d287226650599a97412bb (patch)
treeec55acd86918244262c99c5d8c888932f6459dd2 /Misc/NEWS.d
parenta1f9a3332bd4767e47013ea787022f06b6dbcbbd (diff)
downloadcpython-9f3f0931cfc58498086d287226650599a97412bb.zip
cpython-9f3f0931cfc58498086d287226650599a97412bb.tar.gz
cpython-9f3f0931cfc58498086d287226650599a97412bb.tar.bz2
bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-29-13-05-01.bpo-34003.Iu831h.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-29-13-05-01.bpo-34003.Iu831h.rst b/Misc/NEWS.d/next/Library/2018-06-29-13-05-01.bpo-34003.Iu831h.rst
new file mode 100644
index 0000000..7bc5e12
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-29-13-05-01.bpo-34003.Iu831h.rst
@@ -0,0 +1,2 @@
+csv.DictReader now creates dicts instead of OrderedDicts. Patch by Michael
+Selik.