(f)
| 306 | _is_coroutine_mark = object() |
| 307 | |
| 308 | def _has_coroutine_mark(f): |
| 309 | while ismethod(f): |
| 310 | f = f.__func__ |
| 311 | f = functools._unwrap_partial(f) |
| 312 | return getattr(f, "_is_coroutine_marker", None) is _is_coroutine_mark |
| 313 | |
| 314 | def markcoroutinefunction(func): |
| 315 | """ |
no test coverage detected
searching dependent graphs…