source:
python/trunk/Lib/test/gdb_sample.py
Last change on this file was 391, checked in by , 11 years ago | |
---|---|
|
|
File size: 156 bytes |
Line | |
---|---|
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) |
Note:
See TracBrowser
for help on using the repository browser.