Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
chainedCall.after.py
blob: 50b04a76dbf8d49c9bddbdc60266202817006557 [
file
] [
log
] [
blame
]
class
X
(
object
):
def
testChain
(
self
):
return
X
()
def
g
():
return
X
()
g
().
testChain
().
testChain
()