mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
13 lines
189 B
Python
13 lines
189 B
Python
# Sample script for use by test_gdb
|
|
from _typing import _idfunc
|
|
|
|
def foo(a, b, c):
|
|
bar(a=a, b=b, c=c)
|
|
|
|
def bar(a, b, c):
|
|
baz(a, b, c)
|
|
|
|
def baz(*args):
|
|
_idfunc(42)
|
|
|
|
foo(1, 2, 3)
|