1
0
forked from VimPlug/jedi
Files
jedi-fork/jedi/__main__.py
2014-01-14 00:08:25 +01:00

9 lines
320 B
Python

from sys import argv
from os.path import join, dirname, abspath
if len(argv) == 2 and argv[1] == 'repl':
# don't want to use __main__ only for repl yet, maybe we want to use it for
# something else. So just use the keyword ``repl`` for now.
print(join(dirname(abspath(__file__)), 'api', 'replstartup.py'))