mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
6 lines
327 B
Python
6 lines
327 B
Python
a, b, c = <warning descr="Too many values to unpack">1, 2, 3, 4</warning>
|
|
a, b, c = <warning descr="Too many values to unpack">(1, 2, 3, 4)</warning>
|
|
a, b, c = <warning descr="Need more values to unpack">foo, bar</warning>
|
|
a, b, c, d = 1, 2, 3, 4
|
|
a = 1, 2, 3, 4
|
|
a, b, c = <warning descr="Need more values to unpack">2</warning> |