Files
server/opt/plesk/python/3/lib/python3.10/test/gdb_sample.py
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

13 lines
153 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):
id(42)
foo(1, 2, 3)