Emit a beep sound.
(self)
| 502 | self.flushoutput() |
| 503 | |
| 504 | def beep(self): |
| 505 | """ |
| 506 | Emit a beep sound. |
| 507 | """ |
| 508 | self.__maybe_write_code(self._bel) |
| 509 | self.flushoutput() |
| 510 | |
| 511 | if FIONREAD: |
| 512 |
nothing calls this directly
no test coverage detected