mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
Add test coverage for "starred kind" in _PyPegen_set_expr_context
This commit is contained in:
parent
7e57640c7e
commit
8231a24454
@ -26,6 +26,12 @@ Unpack implied tuple
|
||||
>>> a == [7, 8, 9]
|
||||
True
|
||||
|
||||
Unpack nested implied tuple
|
||||
|
||||
>>> [*[*a]] = [[7,8,9]]
|
||||
>>> a == [[7,8,9]]
|
||||
True
|
||||
|
||||
Unpack string... fun!
|
||||
|
||||
>>> a, *b = 'one'
|
||||
|
Loading…
Reference in New Issue
Block a user