From 7fdcdbbd5c2eae1aa455ae22375894140860c133 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 18 Dec 2016 19:17:25 +0100 Subject: [PATCH] Temporarily execute a string, because currently not everything is working properly. --- test/completion/comprehensions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/completion/comprehensions.py b/test/completion/comprehensions.py index 610cc3d3..c469add9 100644 --- a/test/completion/comprehensions.py +++ b/test/completion/comprehensions.py @@ -94,7 +94,7 @@ b[0] # jedi issue #26 #? list() -a = [[int(v) for v in line.strip().split() if v] for line in ["123", "123", "123"] if line] +a = [[int(v) for v in line.strip().split() if v] for line in ["123", str(), "123"] if line] #? list() a[0] #? int()