mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 14:54:36 +07:00
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
11 lines
153 B
Python
11 lines
153 B
Python
class A(object):
|
|
@classmethod
|
|
def m(cls):
|
|
pass
|
|
|
|
class B(A):
|
|
@classmethod
|
|
def m(cls):
|
|
<selection>super().m()</selection>
|
|
|