Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
c7287d14ff9afb2ae3cc26fa670a0da3aaf16965
/
.
/
python
/
testData
/
completion
/
chainedCall.py
blob: 488d7d67991aed2d1ad85297d80cd0d2f1e9ae42 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
class
X
(
object
):
2
def
testChain
(
self
):
3
return
X
()
4
5
def
g
():
6
return
X
()
7
8
g
().
testChain
().
te
<
caret
>
9