mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
11 lines
153 B
Python
11 lines
153 B
Python
# makes sense for python 2.x
|
|
class A:
|
|
def __init__(self, one):
|
|
pass
|
|
|
|
class B(A):
|
|
def __new__(cls, one, two):
|
|
pass
|
|
|
|
b = B(<arg1>"only_one")
|