forked from VimPlug/jedi
Fix a few issues with the newly defined CompiledValue
This commit is contained in:
@@ -187,8 +187,8 @@ def predefine_names(context, flow_scope, dct):
|
||||
|
||||
|
||||
def is_compiled(context):
|
||||
from jedi.evaluate.compiled import CompiledObject
|
||||
return isinstance(context, CompiledObject)
|
||||
from jedi.evaluate.compiled import CompiledObject, CompiledValue
|
||||
return isinstance(context, (CompiledObject, CompiledValue))
|
||||
|
||||
|
||||
def is_string(context):
|
||||
|
||||
Reference in New Issue
Block a user