Was machst du mit Syntax?
c = PokoClass()
with c as poko:
poko.hoge()
Ist
c = PokoClass()
poko = c.__enter__()
poko.hoge()
c.__exit__()
Synonym zu.
__exit () __
akzeptiert vier Argumente: self, exc_type, exc_value, traceback. Keine wird übergeben, wenn keine Ausnahme ausgelöst wird
Recommended Posts