Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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"
)