(self, delay, 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 |
| 316 | |
| 317 | def call_at(self, when, callback, *args, context=None): |
| 318 | raise NotImplementedError |
no outgoing calls
no test coverage detected