diff --git a/test/completion/imports.py b/test/completion/imports.py new file mode 100644 index 00000000..16bfa907 --- /dev/null +++ b/test/completion/imports.py @@ -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