| 251 | coro = coroutine_function_example(1) |
| 252 | |
| 253 | class PMClass: |
| 254 | async_generator_partialmethod_example = functools.partialmethod( |
| 255 | async_generator_function_example) |
| 256 | coroutine_partialmethod_example = functools.partialmethod( |
| 257 | coroutine_function_example) |
| 258 | gen_coroutine_partialmethod_example = functools.partialmethod( |
| 259 | gen_coroutine_function_example) |
| 260 | |
| 261 | # partialmethods on the class, bound to an instance |
| 262 | pm_instance = PMClass() |
no outgoing calls
searching dependent graphs…