Home | History | Annotate | Download | only in test
      1 # Sample script for use by test_gdb.py
      2 
      3 def foo(a, b, c):
      4     bar(a, b, c)
      5 
      6 def bar(a, b, c):
      7     baz(a, b, c)
      8 
      9 def baz(*args):
     10     print(42)
     11 
     12 foo(1, 2, 3)
     13