TFDecorator-aware replacement for inspect.ismethod.
(object)
| 388 | |
| 389 | |
| 390 | def ismethod(object): # pylint: disable=redefined-builtin |
| 391 | """TFDecorator-aware replacement for inspect.ismethod.""" |
| 392 | return _inspect.ismethod(tf_decorator.unwrap(object)[1]) |
| 393 | |
| 394 | |
| 395 | def ismodule(object): # pylint: disable=redefined-builtin |