Skip to content

Instantly share code, notes, and snippets.

"""Ban some modules from being importable inside the context
For example:
with missing_modules("sys"):
try:
import sys
except ImportError:
print "sys not found"