pocketpy/tests/99_bugs2.py

15 lines
151 B
Python

def g(x):
return x
def f(x):
return x
assert (g(1), 2) == (1, 2)
assert (
g(1),
2
) == (1, 2)
assert f((
g(1),
2
)) == (1, 2)