On Sat, Mar 23, 2013 at 3:05 PM, Luca Sbardella
wrote:
> The pseudocode above does yields bytes before start_response, but they are
> not *body* bytes, they are empty bytes so that the asynchronous wsgi server
> releases the eventloop and call back at the next eventloop iteration.
>
> I'm I misint
Hi,
The people who best understand WSGI are to be found on the Web-SIG:
http://mail.python.org/mailman/listinfo/web-sig
2013/3/23 Luca Sbardella :
> Hi,
>
> I have an asynchronous wsgi application handler which yields empty bytes
> before it is ready to yield the response body and, importantly, to
Hi,
I have an asynchronous wsgi application handler which yields empty bytes
before it is ready to yield the response body and, importantly, to call
start_response.
Something like this:
def wsgi_handler(environ, start_response):
body = generate_body(environ)
body = maybe_async(bo