mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
8 lines
105 B
Python
8 lines
105 B
Python
class Spam(Eggs):
|
|
def spam_methods(self):
|
|
pass
|
|
|
|
class Eggs(Spam):
|
|
def my_methods(self):
|
|
pass
|