Skip to content

Context managers

Reminders

class MyContext:
    def __enter__(self):
        return self

    def __exit__(self, exc_type, exc_value, exc_tb):
        pass

Activities