mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
10 lines
154 B
Python
10 lines
154 B
Python
class A(object):
|
|
def method(self):
|
|
pass
|
|
C = A
|
|
|
|
class B(C):
|
|
pass
|
|
|
|
b = B()
|
|
b.method() #Unresolved attribute reference 'method' for class 'B' |