mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 2c7d1296854ced8f291aa7ee399ebd1881e2b005
10 lines
108 B
Python
10 lines
108 B
Python
class Clzz:
|
|
def b(self):
|
|
return Clzz()
|
|
|
|
def c(self):
|
|
return "123"
|
|
|
|
|
|
a = Clzz()
|
|
a.b().c().<caret> |