move sections
[python/dscho.git] / Lib / test / gdb_sample.py
bloba732b25b4d2917bc3a88da32269bf13f42244b54
1 # Sample script for use by test_gdb.py
3 def foo(a, b, c):
4 bar(a, b, c)
6 def bar(a, b, c):
7 baz(a, b, c)
9 def baz(*args):
10 print(42)
12 foo(1, 2, 3)