1
0
forked from VimPlug/jedi

Array fixes except for conversions.

This commit is contained in:
Dave Halter
2016-11-13 16:18:46 +01:00
parent 21cfe4fc21
commit b2bdfe4a28
7 changed files with 21 additions and 16 deletions

View File

@@ -3,7 +3,11 @@ from jedi.common import unite
class Context(object):
type = None # TODO remove
api_type = ''
api_type = 'instance'
"""
Most contexts are just instances of something, therefore make this the
default to make subclassing a lot easier.
"""
def __init__(self, evaluator, parent_context=None):
self.evaluator = evaluator