mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 0e35bd5d50e2d6b544cbd4467d184b6be21b7574
11 lines
149 B
Python
11 lines
149 B
Python
class OnlySelf:
|
|
__match_args__ = ()
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def f(obj):
|
|
match obj:
|
|
case OnlySelf(1):
|
|
pass
|