Return true if the object is a method wrapper.
(object)
| 439 | return isinstance(object, types.BuiltinFunctionType) |
| 440 | |
| 441 | def ismethodwrapper(object): |
| 442 | """Return true if the object is a method wrapper.""" |
| 443 | return isinstance(object, types.MethodWrapperType) |
| 444 | |
| 445 | def isroutine(object): |
| 446 | """Return true if the object is any kind of function or method.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…