Files
INTUIA/Programa final/Python-3.10.15/Lib/test/gdb_sample.py
T

13 lines
153 B
Python
Raw Normal View History

2026-03-15 13:27:50 +00:00
# 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)