Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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
()