basic flow tests

This commit is contained in:
David Halter
2012-04-22 14:36:02 +02:00
parent 39a4014a95
commit a42dd9e4fa

14
test/completion/basic.py Normal file
View File

@@ -0,0 +1,14 @@
for a in [1,2]:
#? ['real']
a.real
with open('') as f:
#? ['closed']
f.closed
with open('') as f1, open('') as f2:
#? ['closed']
f1.closed
#? ['closed']
f2.closed