Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 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): | ||||
Martin v. Löwis | 5ae6810 | 2010-04-21 22:38:42 +0000 | [diff] [blame^] | 10 | id(42) |
Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 11 | |
12 | foo(1, 2, 3) |