Sign in
llvm
/
third_party
/
cpython
/
refs/heads/main
/
.
/
Lib
/
test
/
gdb_sample.py
blob: 4188f50136fb97690954f1fd21dd3b5d474e7955 [
file
] [
log
] [
blame
] [
edit
]
# 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
)