(self, event)
| 122 | self.Refresh() |
| 123 | |
| 124 | def OnKeyUp(self, event): |
| 125 | if event.GetKeyCode() in (32, 13): # space and enter |
| 126 | self.selectShip(event) |
| 127 | event.Skip() |
| 128 | |
| 129 | @staticmethod |
| 130 | def OUT_QUAD(t, b, c, d): |
nothing calls this directly
no test coverage detected