forked from VimPlug/jedi
21 lines
180 B
Python
21 lines
180 B
Python
|
|
|
|
import sys
|
|
#? ['prefix']
|
|
sys.prefix
|
|
|
|
#? ['append']
|
|
sys.path.append
|
|
|
|
|
|
# --- builtin math ---
|
|
|
|
from math import *
|
|
#? ['cos', 'cosh']
|
|
cos
|
|
|
|
import os
|
|
|
|
#? ['dirname']
|
|
os.path.dirname
|