Files
openide/python/testData/completion/ancestorHasDunderNewMethod.py
2016-08-02 16:29:59 +03:00

9 lines
180 B
Python

class A(object):
@staticmethod
def __new__(cls, *more):
return super(A, cls).__new__(cls, *more)
class B(A):
def test_method(self):
self.test_m<caret>