From: Victor Stinner Date: Tue, 1 Dec 2020 15:22:25 +0000 (+0100) Subject: bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595) X-Git-Tag: v3.10.0a3~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1867b462de427bcb8dfbcd256028410aea6ae929;p=thirdparty%2FPython%2Fcpython.git bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595) --- diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 6a9fa3415694..0b4820f3333e 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -2113,9 +2113,6 @@ Changes in the C API (Contributed by Antoine Pitrou in :issue:`32388`.) -* The :c:func:`PyCode_New` has a new parameter in the second position (*posonlyargcount*) - to support :pep:`570`, indicating the number of positional-only arguments. - * The functions :c:func:`PyNode_AddChild` and :c:func:`PyParser_AddToken` now accept two additional ``int`` arguments *end_lineno* and *end_col_offset*.