On Mon, Aug 1, 2011 at 5:41 PM, Anand Chitipothu <[email protected]> wrote: > 2011/8/1 Dhananjay Nene <[email protected]>: >> [..] >> >> How could the above proposal (if it does) help in >> >> a) Creating simpler, lighter frameworks (eg. flask) >> b) Help support greater asynchronicity (a la tornado, node.js etc.) > > WSGILite looks just like a syntactic sugar for changing: > > def app(env, start_response): > ... > start_response(status, headers) > ... > return body > > to > > @lite > def app(env): > return status, headers, body > > I don't see how it is solving the async problem. > Thanks. That will probably save me some time :)
Dhananjay _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
