
def ret(*args): return args

print(ret(1, 2, 3))

for _ in range(1000000): ret = ret.__call__

print(ret(1, 2, 3))