Skip to content

Instantly share code, notes, and snippets.

@goyalrohit
Created February 1, 2018 10:14
Show Gist options
  • Save goyalrohit/ad1772ae831d130682e5f362cb4f0219 to your computer and use it in GitHub Desktop.
Save goyalrohit/ad1772ae831d130682e5f362cb4f0219 to your computer and use it in GitHub Desktop.
class LoggingContextManager:
def __enter__(self):
return "You are in a with block"
def __exit__(self, exc_type, exc_val, exc_tb):
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment