forked from VimPlug/jedi
Remove __str__ from name.
This commit is contained in:
@@ -46,7 +46,7 @@ def calculate_children(evaluator, context, children):
|
||||
for operator in iterator:
|
||||
right = next(iterator)
|
||||
if operator.type == 'comp_op': # not in / is not
|
||||
operator = ' '.join(str(c.value) for c in operator.children)
|
||||
operator = ' '.join(c.value for c in operator.children)
|
||||
|
||||
# handle lazy evaluation of and/or here.
|
||||
if operator in ('and', 'or'):
|
||||
|
||||
Reference in New Issue
Block a user