1
0
forked from VimPlug/jedi

Sphinx documentation tests

This commit is contained in:
David Halter
2012-02-25 00:52:43 +01:00
parent 4ba5b7c83b
commit 166004565a
7 changed files with 786 additions and 30 deletions

29
test.py
View File

@@ -46,11 +46,28 @@ def func():
cdef = A()
return test
for i in range(3):
asdf = aaa
print 'blub'
#for i in range(3):
# asdf = aaa
# print 'blub'
datetime.
A.
def ass_test(a):
"""docstring for assignment test"""
a -= 1
b, c, d = (1,2,3)
del b
return (a+b)*2
matrix = [[1,2,3], [4,5,6], [7,8,9]]
def loop_test(a):
"""docstring for loop_test"""
global matrix
for i in matrix:
print a
#while 1:
# del a
# print a
return Matrix[0,1]