Return the characters that have been typed but not yet processed.
(self)
| 133 | |
| 134 | @abstractmethod |
| 135 | def getpending(self) -> Event: |
| 136 | """Return the characters that have been typed but not yet |
| 137 | processed.""" |
| 138 | ... |
| 139 | |
| 140 | @abstractmethod |
| 141 | def wait(self, timeout: float | None) -> bool: |