1
0
forked from VimPlug/jedi

Fix most dynamic array issues.

This commit is contained in:
Dave Halter
2017-09-26 17:26:33 +02:00
parent 592f2dac95
commit ee52cc7501
6 changed files with 25 additions and 15 deletions

View File

@@ -18,6 +18,7 @@ class ContextSet(object):
Used to work with an iterable of set.
"""
aggregated = set()
sets = list(sets)
for set_ in sets:
if isinstance(set_, ContextSet):
aggregated |= set_._set