1
0
forked from VimPlug/jedi

first version of statement parser

This commit is contained in:
David Halter
2012-02-26 04:27:00 +01:00
parent 166004565a
commit e83079d563
3 changed files with 100 additions and 39 deletions

View File

@@ -56,7 +56,8 @@ def ass_test(a):
a -= 1
b, c, d = (1,2,3)
del b
return (a+b)*2
result = int((a+b)*2)
return result
matrix = [[1,2,3], [4,5,6], [7,8,9]]