mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
11 lines
168 B
Python
11 lines
168 B
Python
class Foo:
|
|
def foo(self):
|
|
print("a")
|
|
|
|
class Zope():
|
|
def _mine(self):
|
|
print "zope"
|
|
|
|
class Boo(Zope, Foo):
|
|
def boo(self):
|
|
print "rrrrr" |