def generator_mode(function): makecontext = infinite_context_manager(function) return lambda *a, **k: ContextManagerMode(makecontext(*a, **k))