mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +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 |