Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2
/
.
/
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
)