Skip to content

Instantly share code, notes, and snippets.

@lockie
Created April 19, 2018 19:53
Show Gist options
  • Save lockie/7b86f1a85bdd5f6b44a0e8764b97401c to your computer and use it in GitHub Desktop.
Save lockie/7b86f1a85bdd5f6b44a0e8764b97401c to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Context():
def __enter__(self):
print('__enter__')
def __exit__(self, *args):
print('__exit__')
def gen():
with Context():
yield 1
for i in gen():
print(i / 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment