(self, exception)
| 144 | raise RuntimeError('Task does not support set_result operation') |
| 145 | |
| 146 | def set_exception(self, exception): |
| 147 | raise RuntimeError('Task does not support set_exception operation') |
| 148 | |
| 149 | def get_stack(self, *, limit=None): |
| 150 | """Return the list of stack frames for this task's coroutine. |
no outgoing calls
no test coverage detected