(self)
| 214 | self.idx = idx |
| 215 | |
| 216 | def reset_state(self): |
| 217 | super(BatchDataByShape, self).reset_state() |
| 218 | self.holder = defaultdict(list) |
| 219 | self._guard = DataFlowReentrantGuard() |
| 220 | |
| 221 | def __iter__(self): |
| 222 | with self._guard: |
nothing calls this directly
no test coverage detected