diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2019-12-18 00:20:55 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-18 00:20:55 (GMT) |
commit | 50d4f12958bf806a4e1a1021d70cfd5d448c5cba (patch) | |
tree | a72061a8d4f0137b6094d4fdd7a9575065289d8a /Misc | |
parent | a9d0a6a1b932752873e04714c5dda707729078e4 (diff) | |
download | cpython-50d4f12958bf806a4e1a1021d70cfd5d448c5cba.zip cpython-50d4f12958bf806a4e1a1021d70cfd5d448c5cba.tar.gz cpython-50d4f12958bf806a4e1a1021d70cfd5d448c5cba.tar.bz2 |
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Co-Authored-By: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-12-17-21-45-36.bpo-39080.OrxEVS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-12-17-21-45-36.bpo-39080.OrxEVS.rst b/Misc/NEWS.d/next/Core and Builtins/2019-12-17-21-45-36.bpo-39080.OrxEVS.rst new file mode 100644 index 0000000..b120d49 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-12-17-21-45-36.bpo-39080.OrxEVS.rst @@ -0,0 +1 @@ +Fix the value of *end_col_offset* for Starred Expression AST nodes when they are among the elements in the *args* attribute of Call AST nodes. |