Close the tail monitor, discarding any remaining input.
(self)
| 171 | return self._dequeue() |
| 172 | |
| 173 | def close(self): |
| 174 | """Close the tail monitor, discarding any remaining input.""" |
| 175 | self.f.close() |
| 176 | self.f = None |
| 177 | self.queue = [] |
| 178 | self.window = [] |
| 179 | |
| 180 | def __iter__(self): |
| 181 | """Iterator interface, so you can do: |
no outgoing calls
no test coverage detected