Run a coroutine. The coroutine should yield promise objects with a ``.then(on_success, on_error)`` method.
(coro)
| 12 | |
| 13 | |
| 14 | def run(coro): |
| 15 | """ |
| 16 | Run a coroutine. The coroutine should yield promise objects with a |
| 17 | ``.then(on_success, on_error)`` method. |
| 18 | """ |
| 19 | _Runner(coro) |
| 20 | |
| 21 | |
| 22 | def spawn(coro): |
no test coverage detected