source: python/trunk/Lib/test/gdb_sample.py

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 156 bytes
Line 
1# Sample script for use by test_gdb.py
2
3def foo(a, b, c):
4 bar(a, b, c)
5
6def bar(a, b, c):
7 baz(a, b, c)
8
9def baz(*args):
10 print(42)
11
12foo(1, 2, 3)
Note: See TracBrowser for help on using the repository browser.