(code)
| 3312 | else: |
| 3313 | if sys.version_info > (3, 8): |
| 3314 | def compare(code): |
| 3315 | is_async = (inspect.CO_COROUTINE & code.co_flags == inspect.CO_COROUTINE) |
| 3316 | return is_async |
| 3317 | else: |
| 3318 | def compare(code): |
| 3319 | return _async |
nothing calls this directly
no outgoing calls
no test coverage detected