Glossary coding Term Page

__enter__/__exit__

the methods a context manager class must implement to prepare and clean up a resource

enter-exit #coding#python
Korean version

Related Concepts

Core Idea

[[enter-exit|enter/exit]] is the methods a context manager class must implement to prepare and clean up a resource. It usually makes the most sense alongside Context manager, with statement, ExitStack.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept