-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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-38525: Fix a segmentation fault when using reverse iterators of empty dict #16846
Conversation
Misc/NEWS.d/next/Library/2019-10-19-23-58-09.bpo-38525.CzEl2G.rst
Outdated
Show resolved
Hide resolved
CC: @remilapeyre |
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.
Good work! I have left some minor comments and suggestions
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase And if you don't make the requested changes, you will be put in the comfy chair! |
Thanks for the suggestion! |
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.
There is other problem here. See bpo for details.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst
Outdated
Show resolved
Hide resolved
Sorry for botching that, I will look into the issue with shared keys |
Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst
Show resolved
Hide resolved
Thanks @corona10 for the PR, and @pablogsal for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
I'm having trouble backporting to |
Thanks @corona10 for the PR, and @pablogsal for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
GH-16853 is a backport of this pull request to the 3.8 branch. |
Nice contributions @corona10, it's rare to have to fix a bug in the dict implementation :-) |
…mpty dict (pythonGH-16846) The reverse iterator for empty dictionaries was not handling correctly shared-key dictionaries.
…mpty dict (pythonGH-16846) The reverse iterator for empty dictionaries was not handling correctly shared-key dictionaries.
https://bugs.python.org/issue38525