Process and return data that's already in the queues (lazy). Raise EOFError if connection closed and no data available. Return b'' if no cooked data available otherwise. Don't block unless in the midst of an IAC sequence.
(self)
| 385 | return self.read_very_lazy() |
| 386 | |
| 387 | def read_lazy(self): |
| 388 | """Process and return data that's already in the queues (lazy). |
| 389 | |
| 390 | Raise EOFError if connection closed and no data available. |
| 391 | Return b'' if no cooked data available otherwise. Don't block |
| 392 | unless in the midst of an IAC sequence. |
| 393 | |
| 394 | """ |
| 395 | self.process_rawq() |
| 396 | return self.read_very_lazy() |
| 397 | |
| 398 | def read_very_lazy(self): |
| 399 | """Return any data available in the cooked queue (very lazy). |
nothing calls this directly
no test coverage detected