mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
10 lines
154 B
Python
10 lines
154 B
Python
from A import A as myA # No problem without the 'as'
|
|
|
|
|
|
class B(object):
|
|
pass
|
|
|
|
|
|
class C(myA, B): # No problem when only inheriting from myA
|
|
pass
|