Preguntas con la etiqueta [contextmanager]

Lista contextmanager preguntas

Explicando '__enter__' y '__exit__' de Python

7
respuestas
582
votos
491.0k
vistas

Vi esto en el código de alguien. ¿Qué significa? def __enter__(self): return self def __exit__(self, type, value, tb): self.stream.close() Aquí está el código completo. from __future__ import with_statement#for python2.5 class