summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-10-11 21:30:00 (GMT)
committerGitHub <noreply@github.com>2021-10-11 21:30:00 (GMT)
commit03ea862b8a8234176761240ba122254e9eb11663 (patch)
tree54558cc38bff4fd02bdd3a3f07d5c41c1bee7351 /Doc/whatsnew
parent7103356455c8b0c2ba3523929327756413337a31 (diff)
downloadcpython-03ea862b8a8234176761240ba122254e9eb11663.zip
cpython-03ea862b8a8234176761240ba122254e9eb11663.tar.gz
cpython-03ea862b8a8234176761240ba122254e9eb11663.tar.bz2
bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.11.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 2262d42..1455a59 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -552,6 +552,10 @@ Porting to Python 3.11
(Contributed by Victor Stinner in :issue:`39573`.)
+* The ``<Python.h>`` header file no longer includes ``<stdlib.h>``. C
+ extensions using ``<stdlib.h>`` must now include it explicitly.
+ (Contributed by Victor Stinner in :issue:`45434`.)
+
Deprecated
----------