mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
15 lines
466 B
Python
15 lines
466 B
Python
<error descr="starred assignment target must be in a list or tuple">*hi</error> = [1, 2]
|
|
*a, = range(5)
|
|
for a, *b in [(1, 2, 3), (4, 5, 6, 7)]:
|
|
print(b)
|
|
a, b, c = seq[0], seq[1:-1], seq[-1]
|
|
a, *b, c = seq
|
|
[a, *b, c] = seq
|
|
<error descr="assignment to keyword">True</error> = 2
|
|
<error descr="assignment to keyword">False</error> = 1
|
|
<error descr="assignment to keyword">None</error> = 0
|
|
<error descr="assignment to keyword">__debug__</error> = -1
|
|
|
|
() = []
|
|
[] = []
|