(self)
| 148 | mode. |
| 149 | """ |
| 150 | def __init__(self): |
| 151 | width = 400 |
| 152 | height = 200 |
| 153 | self._buffers = _gen_buffers(width, height) |
| 154 | self._buffer_names = [name for name in self._buffers] |
| 155 | |
| 156 | self._is_running = True |
| 157 | self._incoming_request_queue = [] |
| 158 | |
| 159 | def run_event_loop(self): |
| 160 | if self._is_running: |
nothing calls this directly
no test coverage detected