summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.11.0a6.rst
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2022-08-29 11:10:52 (GMT)
committerGitHub <noreply@github.com>2022-08-29 11:10:52 (GMT)
commitb2714f05c5cc8765178f296f0f8043410e3a5584 (patch)
tree60fae1d076fc5440253029f45dbf91f784e5a3aa /Misc/NEWS.d/3.11.0a6.rst
parentbf9259776dff5348bc854983409ea68618c1f174 (diff)
downloadcpython-b2714f05c5cc8765178f296f0f8043410e3a5584.zip
cpython-b2714f05c5cc8765178f296f0f8043410e3a5584.tar.gz
cpython-b2714f05c5cc8765178f296f0f8043410e3a5584.tar.bz2
gh-90814: Correct NEWS wording re. optional C11 features (GH-96309)
The previous wording of this entry suggests that CPython won't work if optional compiler features are enabled. That's not the case. The change is that we require C11 rather than C89. Note that PEP 7 does say "Python 3.11 and newer versions use C11 without optional features." It is correct there: that's not a guide for users who compile Python, but for CPython devs who must avoid the features.
Diffstat (limited to 'Misc/NEWS.d/3.11.0a6.rst')
-rw-r--r--Misc/NEWS.d/3.11.0a6.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.11.0a6.rst b/Misc/NEWS.d/3.11.0a6.rst
index 24fc5f0..68b80e4 100644
--- a/Misc/NEWS.d/3.11.0a6.rst
+++ b/Misc/NEWS.d/3.11.0a6.rst
@@ -1043,7 +1043,8 @@ Respect `--with-suffix` when building on case-insensitive file systems.
.. nonce: MD783M
.. section: Build
-Building Python now requires a C11 compiler without optional C11 features.
+Building Python now requires a C11 compiler. Optional C11 features are not
+required.
Patch by Victor Stinner.
..