diff options
author | Inada Naoki <songofacandy@gmail.com> | 2020-08-04 02:08:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 02:08:06 (GMT) |
commit | db6d9a50cee92c0ded7c5cb87331c5f0b1008698 (patch) | |
tree | d31cc67d2f51240386ba0dffd8c54275c60065cd /Misc | |
parent | 602a971a2af3a685d625c912c400cadd452718b1 (diff) | |
download | cpython-db6d9a50cee92c0ded7c5cb87331c5f0b1008698.zip cpython-db6d9a50cee92c0ded7c5cb87331c5f0b1008698.tar.gz cpython-db6d9a50cee92c0ded7c5cb87331c5f0b1008698.tar.bz2 |
bpo-41431: Optimize dict_merge for copy (GH-21674)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-08-02-15-53-12.bpo-41431.TblUBT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-08-02-15-53-12.bpo-41431.TblUBT.rst b/Misc/NEWS.d/next/Core and Builtins/2020-08-02-15-53-12.bpo-41431.TblUBT.rst new file mode 100644 index 0000000..fa9d047 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-08-02-15-53-12.bpo-41431.TblUBT.rst @@ -0,0 +1,2 @@ +Optimize ``dict_merge()`` for copying dict (e.g. ``dict(d)`` and +``{}.update(d)``). |