(self)
| 83 | yield dp |
| 84 | |
| 85 | def __iter__(self): |
| 86 | if self._strict: |
| 87 | yield from self.get_data_strict() |
| 88 | else: |
| 89 | yield from self.get_data_non_strict() |
| 90 | |
| 91 | |
| 92 | class MultiThreadMapData(_ParallelMapData): |
nothing calls this directly
no test coverage detected