(self, config)
| 41 | |
| 42 | class SimpleRepl(BaseRepl): |
| 43 | def __init__(self, config): |
| 44 | self.requested_events = [] |
| 45 | BaseRepl.__init__(self, config, window=None) |
| 46 | |
| 47 | def _request_refresh(self): |
| 48 | self.requested_events.append(bpythonevents.RefreshRequestEvent()) |
nothing calls this directly
no outgoing calls
no test coverage detected