(*args, **kwargs)
| 752 | if iscoroutinefunction(func): |
| 753 | @coroutine |
| 754 | def f(*args, **kwargs): |
| 755 | with self._count_ctxmgr(): |
| 756 | res = yield from func(*args, **kwargs) |
| 757 | return res |
| 758 | else: |
| 759 | def f(*args, **kwds): |
| 760 | with self._count_ctxmgr(): |
nothing calls this directly
no test coverage detected