diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-12-01 15:54:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 15:54:54 (GMT) |
commit | ed4614386f210964840daa1f7cbddbbd575f7a49 (patch) | |
tree | 1c759e49cef7fd21bf2695db384475e7ae84a81d /Doc/whatsnew | |
parent | 0955f6863d726985fc9cfad004f242002a0efc80 (diff) | |
download | cpython-ed4614386f210964840daa1f7cbddbbd575f7a49.zip cpython-ed4614386f210964840daa1f7cbddbbd575f7a49.tar.gz cpython-ed4614386f210964840daa1f7cbddbbd575f7a49.tar.bz2 |
bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595)
(cherry picked from commit 1867b462de427bcb8dfbcd256028410aea6ae929)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 6a9fa34..0b4820f 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*. |