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