mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Show base classes in structure view (PY-3370)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class B1:
|
||||
def f(self, x):
|
||||
return x + self.y
|
||||
|
||||
class B2(object):
|
||||
@staticmethod
|
||||
def g(x):
|
||||
return x
|
||||
|
||||
class C(B1, B2):
|
||||
pass
|
||||
|
||||
class D1(C):
|
||||
pass
|
||||
|
||||
class D2(C):
|
||||
pass
|
||||
Reference in New Issue
Block a user