Support async contextmanagers in contextlib.suppress

This was also proposed:

Then you could have this:

with (
    suppress(FileNotFoundError),
    async aiofiles.open("config.json") as f
): 
2 Likes