(self, callback, *args, context=None)
| 309 | raise NotImplementedError |
| 310 | |
| 311 | def call_soon(self, callback, *args, context=None): |
| 312 | return self.call_later(0, callback, *args, context=context) |
| 313 | |
| 314 | def call_later(self, delay, callback, *args, context=None): |
| 315 | raise NotImplementedError |
no test coverage detected