(self)
| 28 | self._strict = strict |
| 29 | |
| 30 | def reset_state(self): |
| 31 | super(_ParallelMapData, self).reset_state() |
| 32 | if not self._strict: |
| 33 | ds = RepeatedData(self.ds, -1) |
| 34 | else: |
| 35 | ds = self.ds |
| 36 | self._iter = ds.__iter__() |
| 37 | |
| 38 | def _recv(self): |
| 39 | pass |
no test coverage detected