1
0
forked from VimPlug/jedi

import changes so that all local imports are 'from jedi.* import *'

This commit is contained in:
Dave Halter
2013-12-25 18:48:04 +01:00
parent 002b7001ca
commit 05f7e6f4b5
4 changed files with 6 additions and 6 deletions

View File

@@ -37,13 +37,13 @@ from __future__ import with_statement
import os
import re
import tokenizer as tokenize
from inspect import cleandoc
from ast import literal_eval
from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3k
from jedi import common
from jedi import debug
from jedi.parser import tokenizer as tokenize
class Base(object):