Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
paramInfo
/
IgnoreNewInOldStyleClass.py
blob: 9de86eeacaf08391f022580f0c8946d1ee84ef92 [
file
] [
log
] [
blame
]
# 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"
)