summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py
blob: 15ed56064442f2727a92f1d3202504a3139b42af (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, b, c)

def bar(a, b, c):
    baz(a, b, c)

def baz(*args):
    print(42)

foo(1, 2, 3)