diff options
author | Victor Stinner <vstinner@python.org> | 2020-12-01 15:22:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 15:22:25 (GMT) |
commit | 1867b462de427bcb8dfbcd256028410aea6ae929 (patch) | |
tree | 927e573add831b7ebf96085bc7e1abc9210d0c7c | |
parent | 8acd0e0d4976e91500149ee189f369f2b83b7537 (diff) | |
download | cpython-1867b462de427bcb8dfbcd256028410aea6ae929.zip cpython-1867b462de427bcb8dfbcd256028410aea6ae929.tar.gz cpython-1867b462de427bcb8dfbcd256028410aea6ae929.tar.bz2 |
bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595)
-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*. |