1
0
forked from VimPlug/jedi

Get a first local test passing.

This commit is contained in:
Dave Halter
2014-10-10 12:07:08 +02:00
parent 3bf1fec568
commit 54c91b1509
3 changed files with 5 additions and 12 deletions
+1 -2
View File
@@ -126,9 +126,8 @@ class Evaluator(object):
:param stmt: A `pr.ExprStmt`.
"""
debug.dbg('eval_statement %s (%s)', stmt, seek_name)
expression_list = stmt.expression_list()
if isinstance(stmt, FakeStatement):
return expression_list # Already contains the results.
return stmt.children # Already contains the results.
result = self.eval_element(stmt.children[0])