Skip to content

Instantly share code, notes, and snippets.

@goyalrohit
Created February 1, 2018 10:14
Show Gist options
  • Save goyalrohit/ed9ae3126418db9728e29ab2d2509c24 to your computer and use it in GitHub Desktop.
Save goyalrohit/ed9ae3126418db9728e29ab2d2509c24 to your computer and use it in GitHub Desktop.
class LoggingContextManager:
def __enter__(self):
print('LoggingContextManager.__enter__()')
return "You are in a with block"
def __exit__(self, exc_type, exc_val, exc_tb):
print('LoggingContextManager.__exit__({},{},{})'.format(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