guys. I'm reading web.py source code to understand how WSGI frameworks work.
When reading application.py module, I wonder why call self._cleanup in cleanup which is a generator function.
I searched reasons to use generator, like this, but I'm not sure why use generator here.
Here is the code block:
def wsgi(env, start_resp):
    # clear threadlocal to avoid inteference of previous requests
    self._cleanup()
    self.load(env)
    try:
        # allow uppercase methods only
        if web.ctx.method.upper() != web.ctx.method:
            raise web.nomethod()
        result = self.handle_with_processors()
        if is_generator(result):
            result = peep(result)
        else:
            result = [result]
    except web.HTTPError, e:
        result = [e.data]
    result = web.utf8(iter(result))
    status, headers = web.ctx.status, web.ctx.headers
    start_resp(status, headers)
    def cleanup():
        self._cleanup()
        yield '' # force this function to be a generator
    return itertools.chain(result, cleanup())
 
     
    