mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
13 lines
133 B
Python
13 lines
133 B
Python
class Spam:
|
|
pass
|
|
|
|
class Parent_1(object):
|
|
pass
|
|
|
|
|
|
class Parent_2():
|
|
pass
|
|
|
|
|
|
class Child(Parent_1, Parent_2, Spam):
|
|
pass |