(meth)
| 178 | |
| 179 | @normalize_token.register((types.MethodType, types.MethodWrapperType)) |
| 180 | def normalize_bound_method(meth): |
| 181 | return normalize_token(meth.__self__), meth.__name__ |
| 182 | |
| 183 | |
| 184 | @normalize_token.register(types.BuiltinFunctionType) |
no outgoing calls
no test coverage detected
searching dependent graphs…