mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
10 lines
143 B
Python
Vendored
10 lines
143 B
Python
Vendored
def func(x):
|
|
b = x + 1
|
|
return b + 2
|
|
|
|
def func2():
|
|
"""Test function for issue 9936 """
|
|
return (1,
|
|
2,
|
|
3)
|