summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2020-06-28 00:33:49 (GMT)
committerGitHub <noreply@github.com>2020-06-28 00:33:49 (GMT)
commit9d197c7d48147a9ea2f7f7be917f35514a16524b (patch)
tree1b8f059794d4b1c1daa2a37a2799d68230f53a65 /Misc
parent1f0f4abb110b9fbade6175842b6a26ab0b8df6dd (diff)
downloadcpython-9d197c7d48147a9ea2f7f7be917f35514a16524b.zip
cpython-9d197c7d48147a9ea2f7f7be917f35514a16524b.tar.gz
cpython-9d197c7d48147a9ea2f7f7be917f35514a16524b.tar.bz2
bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21021)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-00-44.bpo-35975.UDHCHp.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-00-44.bpo-35975.UDHCHp.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-20-17-00-44.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-00-44.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.