Files
openide/python/testData/override/oldStyleClassInPython2_after.py
Mikhail Golubev fbfaf24bc3 [python] Make PyOverrideTest work with the latest Python 3 by default
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
2023-08-09 20:53:35 +00:00

10 lines
206 B
Python

class A:
def doStuff(self, foo=True): pass
class B(A):
def doStuff(self, foo=True):
<selection>A.doStuff(self, foo)</selection>
def otherMethod(self, foo, bar):
print foo, bar