Does `contextlib.suppress(LookupError)` swallow the exception raised here?from contextlib import suppress with suppress(LookupError): {}['x'] print("reached")