Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
debug
/
test_continuation.py
blob: 5957e3db6e82b5d0e2abb4fe4f77003c67214665 [
file
] [
log
] [
blame
]
class
Boo
:
def
bu
(
self
,
y
):
return
1
+
y
class
Foo
:
def
fu
(
self
):
return
Boo
()
x
=
0
print
(
x
)
x
=
Foo
().
fu
()
\
.
bu
(
x
)
print
(
x
)
x
=
2
print
(
x
)