-
-
Notifications
You must be signed in to change notification settings - Fork 31.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-25246: Optimize deque.remove() #23898
bpo-25246: Optimize deque.remove() #23898
Conversation
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit bf52c67 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Misc/NEWS.d/next/Library/2020-12-22-13-16-43.bpo-25246.GhhCTl.rst
Outdated
Show resolved
Hide resolved
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit fff273b 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit a8600ac 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit 34dc45b 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit 357cea5 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
…thon into deque_remove_optimization
🤖 New build scheduled with the buildbot fleet by @rhettinger for commit 039d09d 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fantastic job, @rhettinger !
Alternate PR without an API change. Equivalent to:
i = d.index(v); del d[i]
.Baseline timing:
Timing with the PR:
https://bugs.python.org/issue25246