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