diff options
author | Forest Gregg <fgregg@users.noreply.github.com> | 2019-08-26 07:17:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-26 07:17:43 (GMT) |
commit | 998cf1f03a61de8a0cd3811faa97973d4022bc55 (patch) | |
tree | 1536d878a50a5b365154b72d15d88c805773326f /Misc | |
parent | c3ea41e9bf100a5396b851488c3efe208e5e2179 (diff) | |
download | cpython-998cf1f03a61de8a0cd3811faa97973d4022bc55.zip cpython-998cf1f03a61de8a0cd3811faa97973d4022bc55.tar.gz cpython-998cf1f03a61de8a0cd3811faa97973d4022bc55.tar.bz2 |
bpo-27575: port set intersection logic into dictview intersection (GH-7696)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-06-14-13-55-45.bpo-27575.mMYgzv.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-06-14-13-55-45.bpo-27575.mMYgzv.rst b/Misc/NEWS.d/next/Core and Builtins/2018-06-14-13-55-45.bpo-27575.mMYgzv.rst new file mode 100644 index 0000000..2c250dc --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-06-14-13-55-45.bpo-27575.mMYgzv.rst @@ -0,0 +1,2 @@ +Improve speed of dictview intersection by directly using set intersection +logic. Patch by David Su. |