forked from VimPlug/jedi
assignment operators test
This commit is contained in:
@@ -52,3 +52,15 @@ for char in reversed(['f', 'o', 'o', 'b', 'a', 'r']):
|
|||||||
answer = getattr(FooBar, target)
|
answer = getattr(FooBar, target)
|
||||||
##? str()
|
##? str()
|
||||||
answer
|
answer
|
||||||
|
|
||||||
|
# -----------------
|
||||||
|
# assignments
|
||||||
|
# -----------------
|
||||||
|
|
||||||
|
x = [1, 'a', 1.0]
|
||||||
|
|
||||||
|
i = 0
|
||||||
|
i += 1
|
||||||
|
i += 1
|
||||||
|
#? float()
|
||||||
|
x[i]
|
||||||
|
|||||||
Reference in New Issue
Block a user