[Python-checkins] [3.8] bpo-33416: Document changes in PyNode_AddChild and PyParser_AddToken (GH-14214) (GH-14215)

Miss Islington (bot) webhook-mailer at python.org
Tue Jun 18 20:33:38 EDT 2019


https://github.com/python/cpython/commit/45da7437f54b4a6bdb8b4ba5a0f13f44a24eec39
commit: 45da7437f54b4a6bdb8b4ba5a0f13f44a24eec39
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-18T17:33:34-07:00
summary:

[3.8] bpo-33416:  Document changes in PyNode_AddChild and PyParser_AddToken (GH-14214) (GH-14215)



I didn't find any entries in the docs about these functions, so I just mentioned them, in "What's New".
(cherry picked from commit 47c2de7725025341318860b9a2601ba7013d27a9)


Co-authored-by: Ivan Levkivskyi <levkivskyi at gmail.com>


https://bugs.python.org/issue33416

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 1312a7433022..d79bc03860c1 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -1454,6 +1454,8 @@ Changes in the C API
 * 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*.
 
 CPython bytecode changes
 ------------------------



More information about the Python-checkins mailing list