We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dadd07 commit 5c2658cCopy full SHA for 5c2658c
source_py3/python_toolbox/combi/chain_space.py
@@ -84,8 +84,7 @@ def __getitem__(self, i):
84
85
def __iter__(self):
86
for sequence in self.sequences:
87
- # yield from sequence Commenting for fucking Pypy
88
- for i in sequence: yield i
+ yield from sequence
89
90
_reduced = property(lambda self: (type(self), self.sequences))
91
0 commit comments