[python] Make PyOverrideTest work with the latest Python 3 by default

GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
This commit is contained in:
Mikhail Golubev
2023-03-08 13:16:55 +02:00
committed by intellij-monorepo-bot
parent 250ee7e314
commit fbfaf24bc3
18 changed files with 42 additions and 51 deletions

View File

@@ -0,0 +1,8 @@
class A(object):
def m(self):
pass
class B(A):
def m(self):
<selection>super(B, self).m()</selection>