(func)
| 173 | |
| 174 | @normalize_token.register((partial, curry)) |
| 175 | def normalize_partial(func): |
| 176 | return _normalize_seq_func((func.func, func.args, func.keywords)) |
| 177 | |
| 178 | |
| 179 | @normalize_token.register((types.MethodType, types.MethodWrapperType)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…