Method: pylint.checkers.exceptions._builtin_exceptions.<locals>.predicate
Calls: 157635, Exceptions: 0, Paths: 1Back
Path 1: 157635 calls (1.0)
builtin_function_or_method (45764) OSError def (3051) _Printer (3051) True (2034) Quitter (2034) ArithmeticError def (1017) AssertionError def (1017) ...
False (89496) True (68139)
1def predicate(obj: Any) -> bool:
2 return isinstance(obj, type) and issubclass(obj, BaseException)