Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
c742dff16a8dd6979a7857948f63f99f391bb369
/
.
/
Lib
/
test
/
gdb_sample.py
blob: a732b25b4d2917bc3a88da32269bf13f42244b54 [
file
] [
log
] [
blame
]
# Sample script for use by test_gdb.py
def
foo
(
a
,
b
,
c
):
bar
(
a
,
b
,
c
)
def
bar
(
a
,
b
,
c
):
baz
(
a
,
b
,
c
)
def
baz
(*
args
):
print
(
42
)
foo
(
1
,
2
,
3
)