(self, exception)
| 159 | raise RuntimeError('Task does not support set_result operation') |
| 160 | |
| 161 | def set_exception(self, exception): |
| 162 | raise RuntimeError('Task does not support set_exception operation') |
| 163 | |
| 164 | def get_stack(self, *, limit=None): |
| 165 | """Return the list of stack frames for this task's coroutine. |
no outgoing calls
no test coverage detected