summaryrefslogtreecommitdiffstats
path: root/Lib/test/gdb_sample.py
blob: 4188f50136fb97690954f1fd21dd3b5d474e7955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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)