Return True if the buffer is empty and 'feed_eof' was called.
(self)
| 487 | self._wakeup_waiter() |
| 488 | |
| 489 | def at_eof(self): |
| 490 | """Return True if the buffer is empty and 'feed_eof' was called.""" |
| 491 | return self._eof and not self._buffer |
| 492 | |
| 493 | def feed_data(self, data): |
| 494 | assert not self._eof, 'feed_data after feed_eof' |
no outgoing calls