blob: 5c49802d18bb2ea2ea2539a9efc22ffa1a567f38 [file] [log] [blame]
Tor Norbye3a2425a52013-11-04 10:16:08 -08001class X(object):
2 def foo(self):
3 pass
4
5class A:
6 class Inner(X):
7 def foo(self):
8 <selection>super(A.Inner, self).foo()</selection>
9
10 def doStuff(self, foo=True): pass
11
12class B(A):
13 def otherMethod(self, foo, bar):
14 print foo, bar