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