diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-01-31 08:59:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 08:59:50 (GMT) |
commit | 0bb4bdf0d93b301407774c4ffd6df54cff947df8 (patch) | |
tree | 174cc59b599a8f9aa223eb0f24c90fccb5e8701f /Misc | |
parent | 0897e0c597c065f043e4286d01f16f473ab664ee (diff) | |
download | cpython-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.rst | 2 |
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. |