1
0
forked from VimPlug/jedi

remove sys path stuff in run.py (it's in base)

This commit is contained in:
David Halter
2013-01-05 20:19:48 +01:00
parent 15bd963f59
commit 31e8a8c5a2
3 changed files with 5 additions and 11 deletions

View File

@@ -4,17 +4,12 @@ import sys
import re
import traceback
import time
from os.path import abspath, dirname
sys.path.insert(0, abspath(dirname(abspath(__file__)) + '/../jedi'))
os.chdir(dirname(abspath(__file__)) + '/../jedi')
from base import api
from _compatibility import unicode, StringIO, reduce, literal_eval, is_py25
import api
import debug
sys.path.pop(0) # pop again, because it might affect the completion
#sys.path.pop(0) # pop again, because it might affect the completion
def run_completion_test(script, correct, line_nr):