(object)
| 151 | |
| 152 | |
| 153 | def iscoroutinefunction(object): |
| 154 | while isinstance(object, functools.partial): |
| 155 | object = object.func |
| 156 | return asyncio.iscoroutinefunction(object) |
| 157 | |
| 158 | |
| 159 | def isgeneratorfunction(object): |
no outgoing calls
no test coverage detected
searching dependent graphs…