mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +07:00
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
9 lines
128 B
Python
9 lines
128 B
Python
class A(object):
|
|
def m(self):
|
|
pass
|
|
|
|
class B(A):
|
|
def m(self):
|
|
<selection>super(B, self).m()</selection>
|
|
|