mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
18 lines
256 B
Python
18 lines
256 B
Python
# --- a
|
|
def test():
|
|
#? 25 a
|
|
return test(1, (30 + b, c) + 1)
|
|
|
|
# +++
|
|
def test():
|
|
a = (30 + b, c) + 1
|
|
return test(a)
|
|
|
|
# --- multiline
|
|
def test():
|
|
return test(1, (30 + b, c) + 1)
|
|
# +++
|
|
def test():
|
|
a = (30 + b, c) + 1
|
|
return test(a)
|