Skip to content

Instantly share code, notes, and snippets.

@Kennyl
Last active February 25, 2017 15:29
Show Gist options
  • Save Kennyl/69fe126ea2a1cabd81150fc1d594943f to your computer and use it in GitHub Desktop.
Save Kennyl/69fe126ea2a1cabd81150fc1d594943f to your computer and use it in GitHub Desktop.
Python suppress excerption compatibility workaround
if (sys.version_info > (3, 0)):
from contextlib import suppress
else:
from contextlib import contextmanager
@contextmanager
def suppress(*exceptions):
try:
yield
except exceptions:
pass
@Kennyl
Copy link
Author

Kennyl commented Feb 25, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment