Play a 'bell' sound (if supported by the terminal).
(self)
| 1090 | self._height = height |
| 1091 | |
| 1092 | def bell(self) -> None: |
| 1093 | """Play a 'bell' sound (if supported by the terminal).""" |
| 1094 | self.control(Control.bell()) |
| 1095 | |
| 1096 | def capture(self) -> Capture: |
| 1097 | """A context manager to *capture* the result of print() or log() in a string, |