Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
superObjectNew.py
blob: b6ccd239b818b9e922e4016a925053051dc11cc8 [
file
] [
log
] [
blame
]
class
Test
(
object
):
def
__new__
(
cls
,
foo
):
x
=
super
(
Test
,
cls
)
return
x
.
__new__
(
cls
)