1
0
forked from VimPlug/jedi

first steps to world domination -> removal of the hackish sys.path modifications

This commit is contained in:
Dave Halter
2013-12-24 16:22:48 +01:00
parent 4e68856cc4
commit 7bf6ff768c
6 changed files with 6 additions and 14 deletions

View File

@@ -17,7 +17,6 @@ complexity of the ``Parser`` (there's another parser sitting inside
"""
from __future__ import with_statement
import tokenizer as tokenize
import keyword
from jedi._compatibility import next, StringIO
@@ -25,6 +24,7 @@ from jedi import debug
from jedi import common
from jedi.parser import representation as pr
from jedi.parser import token as token_pr
from jedi.parser import tokenizer as tokenize
class Parser(object):