cassette/unpatched.py (8 lines of code) (raw):

# This rather useless module is needed to prevent cyclical imports from __future__ import absolute_import import contextlib @contextlib.contextmanager def unpatched_httplib_context(cassette_library): """Create a context in which httplib is unpatched.""" from cassette.patcher import patch, unpatch unpatch() yield patch(cassette_library)