DEBSOURCES
Skip Quicknav
sources / python3.7 / 3.7.3-2%2Bdeb10u3 / Lib / test / gdb_sample.py
123456789101112
# 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): id(42) foo(1, 2, 3)