mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 06:44:20 +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 |