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