Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyOldStyleClassesInspection
/
Super30.py
blob: 8c61d39b8899d5768a09ec6b78483753c97cd54c [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
):
super
()
class
B
(
object
):
def
__init__
(
self
):
super
()
def
super
():
pass
class
C
:
def
__init__
(
self
):
super
()