1
0
forked from VimPlug/jedi

Get iter() working and a lot of other typeshed reverse engineering of type vars

This commit is contained in:
Dave Halter
2018-09-16 02:19:29 +02:00
parent 6807e3b6d5
commit 5d9f29743c
5 changed files with 158 additions and 22 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ class BaseContextSet(object):
aggregated |= set_._set
else:
aggregated |= frozenset(set_)
return cls._from_frozen_set(aggregated)
return cls._from_frozen_set(frozenset(aggregated))
def __or__(self, other):
return self._from_frozen_set(self._set | other._set)