mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
[python] Make PyOverrideTest work with the latest Python 3 by default
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
250ee7e314
commit
fbfaf24bc3
8
python/testData/override/newStyleClassInPython2_after.py
Normal file
8
python/testData/override/newStyleClassInPython2_after.py
Normal file
@@ -0,0 +1,8 @@
|
||||
class A(object):
|
||||
def m(self):
|
||||
pass
|
||||
|
||||
class B(A):
|
||||
def m(self):
|
||||
<selection>super(B, self).m()</selection>
|
||||
|
||||
Reference in New Issue
Block a user