mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: d4755af5ca19efef70db6c4a043135182bc0da04
14 lines
209 B
Python
14 lines
209 B
Python
match x:
|
|
case ('foo'
|
|
'bar'):
|
|
pass
|
|
case ('foo'
|
|
'bar', ):
|
|
pass
|
|
case ['foo'
|
|
'bar']:
|
|
pass
|
|
case Class('foo'
|
|
'bar'):
|
|
pass
|