mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
GitOrigin-RevId: d4755af5ca19efef70db6c4a043135182bc0da04
10 lines
164 B
Python
10 lines
164 B
Python
match x:
|
|
case [1 ,2 ,]:
|
|
pass
|
|
case (1 ,2 ,):
|
|
pass
|
|
case {'foo': 1 ,'bar': 2 ,}:
|
|
pass
|
|
case Class(foo=1 ,bar=2 ,):
|
|
pass
|