Lines Matching refs:suppress
1156 cm_docstring = suppress.__doc__
1157 obj = suppress()
1161 with suppress(ValueError) as enter_result:
1165 with suppress(ValueError):
1169 with suppress(TypeError):
1173 with suppress(LookupError):
1178 with suppress(TypeError):
1183 with suppress():
1187 with suppress(ZeroDivisionError, TypeError):
1189 with suppress(ZeroDivisionError, TypeError):
1193 ignore_exceptions = suppress(Exception)