allwinner_a64/android/external/python/cpython2/Lib/test/gdb_sample.py
2018-08-08 16:14:42 +08:00

12 lines
156 B
Python

# Sample script for use by test_gdb.py
def foo(a, b, c):
bar(a, b, c)
def bar(a, b, c):
baz(a, b, c)
def baz(*args):
print(42)
foo(1, 2, 3)