Files
openide/python/testData/codeInsight/mlcompletion/numOfPrevQualifiersIs4.py
andrey.matveev bf9aa197ad PY-41056 Impl new ml completion features
GitOrigin-RevId: 2c7d1296854ced8f291aa7ee399ebd1881e2b005
2020-04-15 10:02:07 +00:00

10 lines
108 B
Python

class Clzz:
def b(self):
return Clzz()
def c(self):
return "123"
a = Clzz()
a.b().c().<caret>