mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-28 07:56:51 +08:00
import tests
This commit is contained in:
20
test/completion/imports.py
Normal file
20
test/completion/imports.py
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
|
||||
import sys
|
||||
#? ['prefix']
|
||||
sys.prefix
|
||||
|
||||
#? ['append']
|
||||
sys.path.append
|
||||
|
||||
|
||||
# --- builtin math ---
|
||||
|
||||
from math import *
|
||||
#? ['cos', 'cosh']
|
||||
cos
|
||||
|
||||
import os
|
||||
|
||||
#? ['dirname']
|
||||
os.path.dirname
|
||||
Reference in New Issue
Block a user