diff options
author | Grigoriev Semyon <33061489+grigoriev-semyon@users.noreply.github.com> | 2024-04-04 15:22:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 15:22:43 (GMT) |
commit | a49426afaa470894cc3d2771d0510935b5a844b8 (patch) | |
tree | fade1d2d40f12e827a980dc5f3f469f7e9ddbee4 /Misc | |
parent | 663e7bc2eed89c72e795d7b855c7ff283c0264c1 (diff) | |
download | cpython-a49426afaa470894cc3d2771d0510935b5a844b8.zip cpython-a49426afaa470894cc3d2771d0510935b5a844b8.tar.gz cpython-a49426afaa470894cc3d2771d0510935b5a844b8.tar.bz2 |
[3.12] gh-109120: Fix syntax error in handlinh of incorrect star expressions… (#117465)
gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444)
(cherry picked from commit c97d3af2391e62ef456ef2365d48ab9b8cdbe27b)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-04-02-06-16-49.gh-issue-109120.X485oN.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-04-02-06-16-49.gh-issue-109120.X485oN.rst b/Misc/NEWS.d/next/Core and Builtins/2024-04-02-06-16-49.gh-issue-109120.X485oN.rst new file mode 100644 index 0000000..32e70b2 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-04-02-06-16-49.gh-issue-109120.X485oN.rst @@ -0,0 +1,2 @@ +Added handle of incorrect star expressions, e.g ``f(3, *)``. Patch by +Grigoryev Semyon |