In Python 3.4 onwards, you can use contextlib.suppress:
from contextlib import suppress
with suppress(Exception): # or, better, a more specific error (or errors)
do_magic()
with suppress(Exception):
do_foo()
with suppress(Exception):
do_bar()
Alternatively, fuckit.