mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
inline refactorings support tuples now, #103
This commit is contained in:
@@ -6,3 +6,13 @@ def test():
|
||||
# +++
|
||||
def test():
|
||||
return test(100, (30 + b, c) + 1)
|
||||
|
||||
|
||||
# --- simple
|
||||
if 1:
|
||||
#? 4
|
||||
a = 1, 2
|
||||
return test(100, a)
|
||||
# +++
|
||||
if 1:
|
||||
return test(100, (1, 2))
|
||||
|
||||
Reference in New Issue
Block a user