MinDalle_StableDiff/Python310/Lib/test/gdb_sample.py

13 lines
153 B
Python
Raw Permalink Normal View History

2022-09-17 15:26:13 +03: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)