1
0
forked from VimPlug/jedi

Fix the whole test suite of descriptors.

This commit is contained in:
Dave Halter
2016-11-16 22:57:07 +01:00
parent ba03f1dcb9
commit d15016c5c1
5 changed files with 16 additions and 18 deletions
+1 -1
View File
@@ -623,7 +623,7 @@ def py__iter__(evaluator, types, node=None):
else:
type_iters.append(iter_method())
for lazy_contexts in zip_longest(*type_iters, fillvalue=None):
for lazy_contexts in zip_longest(*type_iters):
yield context.get_merged_lazy_context(
[l for l in lazy_contexts if l is not None]
)