(self)
| 152 | return self |
| 153 | |
| 154 | def __next__(self): |
| 155 | value_now, history_until = self.text_queue.get(timeout=self.timeout) |
| 156 | if value_now == self.stop_signal: |
| 157 | raise StopIteration() |
| 158 | else: |
| 159 | return value_now, history_until |
nothing calls this directly
no outgoing calls
no test coverage detected