1
0
forked from VimPlug/jedi

py3.0, py3.1 and py32 don't support unicode literals. Support those.

This commit is contained in:
Dave Halter
2014-04-22 16:00:13 +02:00
parent a49c624154
commit 4ae99256be
3 changed files with 15 additions and 3 deletions
-1
View File
@@ -187,7 +187,6 @@ def calculate(evaluator, left_result, operator, right_result):
result = (left_result or []) + (right_result or [])
for i, r in enumerate(result):
if _is_number(r) or _is_string(r):
print r, left_result, right_result
# Literals are only valid as long as the operations are
# correct. Otherwise add a value-free instance.
cls = CompiledObject(type(r.obj), builtin)