1 2 3 4 5 6 7 8 9 10
class MyContextManager: def __enter__(self): pass def __exit__(self, *exc): pass with MyContextManager() as c: pass