Return True if and only if object is an instance of PyKernelDecorator.
(object)
| 748 | |
| 749 | |
| 750 | def isa_kernel_decorator(object): |
| 751 | """ |
| 752 | Return True if and only if object is an instance of PyKernelDecorator. |
| 753 | """ |
| 754 | return isinstance(object, PyKernelDecorator) |
| 755 | |
| 756 | |
| 757 | def _get_source(function): |
no outgoing calls
no test coverage detected