mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 14:54:47 +08:00
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)
|