diff options
author | Guido van Rossum <guido@python.org> | 2020-06-28 00:35:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 00:35:05 (GMT) |
commit | e653369e76d7da6bcbcf1f09a141f47fb77df6c3 (patch) | |
tree | 4b49461500a8246c0d2d5e3a1a592ee72ad6ddbc /Misc | |
parent | 749d3bc04177ff9e2ddfd58d919b84cb4f6cf894 (diff) | |
download | cpython-e653369e76d7da6bcbcf1f09a141f47fb77df6c3.zip cpython-e653369e76d7da6bcbcf1f09a141f47fb77df6c3.tar.gz cpython-e653369e76d7da6bcbcf1f09a141f47fb77df6c3.tar.bz2 |
[3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21023)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-21-07.bpo-35975.UDHCHp.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-21-07.bpo-35975.UDHCHp.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-21-07.bpo-35975.UDHCHp.rst new file mode 100644 index 0000000..73f4a6d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-21-07.bpo-35975.UDHCHp.rst @@ -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 it's been fixed. |