1
0
forked from VimPlug/jedi

Merge with master again

Some bugs were still present in master
This commit is contained in:
Dave Halter
2018-01-20 21:45:55 +01:00
6 changed files with 19 additions and 6 deletions

View File

@@ -369,7 +369,7 @@ class Evaluator(object):
scope_node = parent_scope(node)
return from_scope_node(scope_node, is_nested=True, node_is_object=node_is_object)
def parse_and_get_code(self, code, path, **kwargs):
def parse_and_get_code(self, code=None, path=None, **kwargs):
if self.allow_different_encoding:
if code is None:
with open(path, 'rb') as f: