mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 65787827f5df5aa80986107dda0ba555b0942d40
7 lines
102 B
Python
7 lines
102 B
Python
class Super:
|
|
def method(self, x):
|
|
pass
|
|
|
|
|
|
class Sub(Super):
|
|
def method(self, x):<caret> |