Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
e9791ba35175171170ff09094ea46b91fc18c654
/
.
/
Lib
/
test
/
gdb_sample.py
blob: 4188f50136fb97690954f1fd21dd3b5d474e7955 [
file
]
# 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
)