Skip to content

Commit

Permalink
Adds complex assignment test
Browse files Browse the repository at this point in the history
  • Loading branch information
joshkunz committed Apr 5, 2015
1 parent 2176753 commit cf09cc9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions proj3/tests/assignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
print(a, b, c, d, e, f, g, h)
x = y = z = 10
print(x, y, z)
x = y = a, *b, c, d = list(range(10))
print(x, y, a, b, c, d)

0 comments on commit cf09cc9

Please sign in to comment.