-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags #21021
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
Conversation
|
I've done manual backports -- should I keep the "needs backport to XXX" labels or ditch them? |
Let's remove them, because if not the bots will create PRs on merge |
| @@ -0,0 +1,3 @@ | |||
| Stefan Behnel reported that cf_feature_version is used even when | |||
| PyCF_ONLY_AST is not set. This is against the intention and against the | |||
| documented behavior, so I fixed it. | |||
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.
is it possible to avoid "I" in the NEWS entry? At least, replace it with Guido. Otherwise, it's unclear who is "I".
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.
I'll change this to "so it's been fixed."
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.
Thanks :-)
|
@gvanrossum: Please replace |
Stefan Behnel reported that cf_feature_version is used even when
PyCF_ONLY_AST is not set. This is against the intention and against the
documented behavior, so it's been fixed. Includes a test contributed by Stefan.
https://bugs.python.org/issue35975