1
0
forked from VimPlug/jedi

assignment operators test

This commit is contained in:
Dave Halter
2014-03-09 13:15:30 +01:00
parent 7f0e31798a
commit a073b902c1

View File

@@ -52,3 +52,15 @@ for char in reversed(['f', 'o', 'o', 'b', 'a', 'r']):
answer = getattr(FooBar, target)
##? str()
answer
# -----------------
# assignments
# -----------------
x = [1, 'a', 1.0]
i = 0
i += 1
i += 1
#? float()
x[i]