Files
RustPython/Lib/test/tracedmodules/testmod.py
snowapril 4872e35210 add test_trace.py from cpython 3.8
Signed-off-by: snowapril <sinjihng@gmail.com>
2021-10-01 14:10:58 +09:00

10 lines
152 B
Python
Vendored

def func(x):
b = x + 1
return b + 2
def func2():
"""Test function for issue 9936 """
return (1,
2,
3)