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