MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / ismethodwrapper

Function ismethodwrapper

tools/python-3.11.9-amd64/Lib/inspect.py:514–516  ·  view source on GitHub ↗

Return true if the object is a method wrapper.

(object)

Source from the content-addressed store, hash-verified

512 return isinstance(object, types.BuiltinFunctionType)
513
514def ismethodwrapper(object):
515 """Return true if the object is a method wrapper."""
516 return isinstance(object, types.MethodWrapperType)
517
518def isroutine(object):
519 """Return true if the object is any kind of function or method."""

Callers 1

isroutineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected