| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class X(object): |
| 2 | def foo(self): | ||||
| 3 | pass | ||||
| 4 | |||||
| 5 | class 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 | |||||
| 12 | class B(A): | ||||
| 13 | def otherMethod(self, foo, bar): | ||||
| 14 | print foo, bar | ||||