mirror of https://github.com/python/cpython.git
[3.13] gh-94808: Add test coverage for "starred kind" in _PyPegen_set_expr_context (GH-119222) (GH-119263)
gh-94808: Add test coverage for "starred kind" in _PyPegen_set_expr_context (GH-119222)
Add test coverage for "starred kind" in _PyPegen_set_expr_context
(cherry picked from commit 8231a24454
)
Co-authored-by: Mark Jason Dominus (陶敏修) <mjd@pobox.com>
This commit is contained in:
parent
8368b67d1b
commit
18359f202d
|
@ -26,6 +26,12 @@
|
||||||
>>> a == [7, 8, 9]
|
>>> a == [7, 8, 9]
|
||||||
True
|
True
|
||||||
|
|
||||||
|
Unpack nested implied tuple
|
||||||
|
|
||||||
|
>>> [*[*a]] = [[7,8,9]]
|
||||||
|
>>> a == [[7,8,9]]
|
||||||
|
True
|
||||||
|
|
||||||
Unpack string... fun!
|
Unpack string... fun!
|
||||||
|
|
||||||
>>> a, *b = 'one'
|
>>> a, *b = 'one'
|
||||||
|
|
Loading…
Reference in New Issue