summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-01-31 08:59:50 (GMT)
committerGitHub <noreply@github.com>2019-01-31 08:59:50 (GMT)
commit0bb4bdf0d93b301407774c4ffd6df54cff947df8 (patch)
tree174cc59b599a8f9aa223eb0f24c90fccb5e8701f /Misc
parent0897e0c597c065f043e4286d01f16f473ab664ee (diff)
downloadcpython-0bb4bdf0d93b301407774c4ffd6df54cff947df8.zip
cpython-0bb4bdf0d93b301407774c4ffd6df54cff947df8.tar.gz
cpython-0bb4bdf0d93b301407774c4ffd6df54cff947df8.tar.bz2
bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)
* Change from OrderedDict to a regular dict * Add blurb
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-30-20-22-36.bpo-35864.ig9KnG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-30-20-22-36.bpo-35864.ig9KnG.rst b/Misc/NEWS.d/next/Library/2019-01-30-20-22-36.bpo-35864.ig9KnG.rst
new file mode 100644
index 0000000..e3b41b7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-01-30-20-22-36.bpo-35864.ig9KnG.rst
@@ -0,0 +1,2 @@
+The _asdict() method for collections.namedtuple now returns a regular dict
+instead of an OrderedDict.