Emit a beep sound.
(self)
| 522 | self.flushoutput() |
| 523 | |
| 524 | def beep(self): |
| 525 | """ |
| 526 | Emit a beep sound. |
| 527 | """ |
| 528 | self.__maybe_write_code(self._bel) |
| 529 | self.flushoutput() |
| 530 | |
| 531 | if FIONREAD: |
| 532 |
nothing calls this directly
no test coverage detected