DEBSOURCES
Skip Quicknav
sources / pypy3 / 7.0.0%2Bdfsg-3 / lib-python / 3 / 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)