blob: 8c61d39b8899d5768a09ec6b78483753c97cd54c [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def __init__(self):
3 super()
4
5class B(object):
6 def __init__(self):
7 super()
8
9def super():
10 pass
11
12class C:
13 def __init__(self):
14 super()