{{ message }}
closes bpo-42726: gdb libpython: InstanceProxy support for py3 - #23912
Merged
miss-islington merged 2 commits intoDec 24, 2020
Merged
miss-islington merged 2 commits into
miss-islington merged 2 commits into
Conversation
Fidget-Spinner
approved these changes
Dec 23, 2020
Fidget-Spinner
left a comment
Member
There was a problem hiding this comment.
This LGTM other than one minor nit. Thanks!
I can't speak for the core devs, but my hunch is that we may need an issue and news entry :). Usually bugfixes get news entries, and the issue can help ping core devs interested in such issues.
benjaminp
reviewed
Dec 23, 2020
hackaugusto
force-pushed
the
gdb/libpython-instanceproxy-support-for-py3
branch
from
December 23, 2020 18:42
557efd0 to
d9c02f8
Compare
Contributor
Author
hackaugusto
force-pushed
the
gdb/libpython-instanceproxy-support-for-py3
branch
from
December 24, 2020 16:52
d9c02f8 to
0e31076
Compare
benjaminp
approved these changes
Dec 24, 2020
Contributor
|
@hackaugusto: Status check is done, and it's a failure ❌ . |
Contributor
|
@hackaugusto: Status check is done, and it's a success ✅ . |
Contributor
|
Thanks @hackaugusto for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8, 3.9. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Dec 24, 2020
…nGH-23912) On Fedora 31 gdb is using python 3.7.9, calling `proxyval` on an instance with a dictionary fails because of the `dict.iteritems` usage. This PR changes the code to be compatible with py2 and py3. This changed seemed small enough to not need an issue and news blurb, if one is required please let me know. Automerge-Triggered-By: GH:benjaminp (cherry picked from commit b57ada9) Co-authored-by: Augusto Hack <hack.augusto@gmail.com>
|
GH-23924 is a backport of this pull request to the 3.9 branch. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Dec 24, 2020
…nGH-23912) On Fedora 31 gdb is using python 3.7.9, calling `proxyval` on an instance with a dictionary fails because of the `dict.iteritems` usage. This PR changes the code to be compatible with py2 and py3. This changed seemed small enough to not need an issue and news blurb, if one is required please let me know. Automerge-Triggered-By: GH:benjaminp (cherry picked from commit b57ada9) Co-authored-by: Augusto Hack <hack.augusto@gmail.com>
miss-islington
added a commit
that referenced
this pull request
Dec 24, 2020
) On Fedora 31 gdb is using python 3.7.9, calling `proxyval` on an instance with a dictionary fails because of the `dict.iteritems` usage. This PR changes the code to be compatible with py2 and py3. This changed seemed small enough to not need an issue and news blurb, if one is required please let me know. Automerge-Triggered-By: GH:benjaminp (cherry picked from commit b57ada9) Co-authored-by: Augusto Hack <hack.augusto@gmail.com>
miss-islington
added a commit
that referenced
this pull request
Dec 24, 2020
) On Fedora 31 gdb is using python 3.7.9, calling `proxyval` on an instance with a dictionary fails because of the `dict.iteritems` usage. This PR changes the code to be compatible with py2 and py3. This changed seemed small enough to not need an issue and news blurb, if one is required please let me know. Automerge-Triggered-By: GH:benjaminp (cherry picked from commit b57ada9) Co-authored-by: Augusto Hack <hack.augusto@gmail.com>
adorilson
pushed a commit
to adorilson/cpython
that referenced
this pull request
Mar 13, 2021
…nGH-23912) On Fedora 31 gdb is using python 3.7.9, calling `proxyval` on an instance with a dictionary fails because of the `dict.iteritems` usage. This PR changes the code to be compatible with py2 and py3. This changed seemed small enough to not need an issue and news blurb, if one is required please let me know. Automerge-Triggered-By: GH:benjaminp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

On Fedora 31 gdb is using python 3.7.9, calling
proxyvalon an instance with a dictionary fails because of thedict.iteritemsusage. This PR changes the code to be compatible with py2 and py3.This changed seemed small enough to not need an issue and news blurb, if one is required please let me know.
https://bugs.python.org/issue42726
Automerge-Triggered-By: GH:benjaminp