forked from VimPlug/jedi
9 lines
138 B
Python
9 lines
138 B
Python
# --- simple
|
|
def test():
|
|
#? 4
|
|
a = (30 + b, c) + 1
|
|
return test(100, a)
|
|
# +++
|
|
def test():
|
|
return test(100, (30 + b, c) + 1)
|