Skip to content
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

Use CodeType.replace() in copycode for Python > 3.8 #136

Merged
merged 1 commit into from
Apr 24, 2022

Conversation

eclipseo
Copy link
Contributor

Fix #135

Copy link
Collaborator

@moshez moshez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have marked this as "Approved", because I don't think aiming for a minimal diff should be a blocker. However, if it is possible, let's do that? I'll happily re-approve and merge if you amend the diff this way.


if hasattr(code, "replace"):
return template.replace(**{"co_" + k : v for k, v in changes.items()})
else:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since the if statement returns, the else and the indent is redunant. Avoiding the extra indent makes it easier to verify that the diff does not change the old path. Would you mind doing that?

@glyph
Copy link
Owner

glyph commented Mar 15, 2022

@eclipseo Would you mind responding to @moshez's feedback so we can get this merged?

@cjwatson
Copy link
Contributor

I have marked this as "Approved", because I don't think aiming for a minimal diff should be a blocker. However, if it is possible, let's do that? I'll happily re-approve and merge if you amend the diff this way.

I made the requested fix in #138. @moshez, could you review that?

@moshez moshez merged commit 8462d7c into glyph:master Apr 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Compatibility with Python 3.11
4 participants