mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +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
|