| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame] | 1 | class A: |
| 2 | def doStuff(self, foo=True): pass | ||||
| 3 | |||||
| 4 | class B(A): | ||||
| 5 | def doStuff(self, foo=True): | ||||
| 6 | <selection>A.doStuff(self, foo)</selection> | ||||
| 7 | |||||
| 8 | def otherMethod(self, foo, bar): | ||||
| 9 | print foo, bar | ||||