Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
1aa2e09bdbd413eacb677e9fa4b50630530d0656
/
.
/
python
/
testData
/
debug
/
test_continuation.py
blob: 5957e3db6e82b5d0e2abb4fe4f77003c67214665 [
file
] [
log
] [
blame
]
Tor Norbye
1aa2e09
2014-08-20 17:01:23 -0700
[
diff
] [
blame^
]
1
class
Boo
:
2
def
bu
(
self
,
y
):
3
return
1
+
y
4
5
6
class
Foo
:
7
def
fu
(
self
):
8
return
Boo
()
9
10
x
=
0
11
print
(
x
)
12
x
=
Foo
().
fu
()
\
13
.
bu
(
x
)
14
print
(
x
)
15
x
=
2
16
print
(
x
)