(self)
| 271 | return self.__next__() |
| 272 | |
| 273 | def __next__(self): |
| 274 | try: |
| 275 | return self.get_next() |
| 276 | except errors.OutOfRangeError: |
| 277 | raise StopIteration |
| 278 | |
| 279 | def get_next(self, name=None): |
| 280 | """Returns the next input from the iterator for all replicas.""" |