inline refactorings support tuples now, #103

This commit is contained in:
David Halter
2013-01-07 20:26:17 +01:00
parent 53a5bf6be8
commit b748003b54
2 changed files with 16 additions and 1 deletions

View File

@@ -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))