(coro)
| 72 | return f'{coro_name}()' |
| 73 | |
| 74 | def is_running(coro): |
| 75 | try: |
| 76 | return coro.cr_running |
| 77 | except AttributeError: |
| 78 | try: |
| 79 | return coro.gi_running |
| 80 | except AttributeError: |
| 81 | return False |
| 82 | |
| 83 | coro_code = None |
| 84 | if hasattr(coro, 'cr_code') and coro.cr_code: |
no outgoing calls
no test coverage detected
searching dependent graphs…