mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
basic flow tests
This commit is contained in:
14
test/completion/basic.py
Normal file
14
test/completion/basic.py
Normal 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
|
||||
Reference in New Issue
Block a user