Lines Matching refs:suppress
907 cm_docstring = suppress.__doc__
908 obj = suppress()
912 with suppress(ValueError) as enter_result:
916 with suppress(ValueError):
920 with suppress(TypeError):
924 with suppress(LookupError):
929 with suppress(TypeError):
934 with suppress():
938 with suppress(ZeroDivisionError, TypeError):
940 with suppress(ZeroDivisionError, TypeError):
944 ignore_exceptions = suppress(Exception)