Sign in
android
/
platform
/
external
/
python
/
cpython3
/
bad86a621a
/
.
/
Lib
/
test
/
gdb_sample.py
blob: 4188f50136fb97690954f1fd21dd3b5d474e7955 [
file
] [
log
] [
blame
]
# Sample script for use by test_gdb.py
def
foo
(
a
,
b
,
c
):
bar
(
a
=
a
,
b
=
b
,
c
=
c
)
def
bar
(
a
,
b
,
c
):
baz
(
a
,
b
,
c
)
def
baz
(*
args
):
id
(
42
)
foo
(
1
,
2
,
3
)