mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
204 B
Python
11 lines
204 B
Python
from BC import C # No problem if D is also in BC.py
|
|
|
|
|
|
class D(C):
|
|
def __init__(self, x):
|
|
C.__init__(self, x) # <- "Unexpected argument" warning for x
|
|
|
|
|
|
d = D(4)
|
|
assert d.x == 4 # runs fine
|