diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-05-27 11:30:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 11:30:45 (GMT) |
commit | cb04a09d2dfd197436a11de504b92773569e19fb (patch) | |
tree | 8aa6d8280d9dde5c2058ccd8461f81f207a1a090 /Doc | |
parent | ddc4a782d3f32efbc03c69ddd59b6fa10911bcd9 (diff) | |
download | cpython-cb04a09d2dfd197436a11de504b92773569e19fb.zip cpython-cb04a09d2dfd197436a11de504b92773569e19fb.tar.gz cpython-cb04a09d2dfd197436a11de504b92773569e19fb.tar.bz2 |
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index fd48784..4493476 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -144,6 +144,11 @@ Changes in the Python API Build Changes ============= +* ``va_start()`` with two parameters, like ``va_start(args, format),`` + is now required to build Python. + ``va_start()`` is no longer called with a single parameter. + (Contributed by Kumar Aditya in :gh:`93207`.) + C API Changes ============= |