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