Activity log for bug #486281

Date Who What changed Old value New value Message
2009-11-21 13:41:51 Alex Koshelev bug added bug
2009-11-21 14:19:40 Alex Koshelev description application.cgirun() doc string suggests such use case: """ Return a CGI handler. This is mostly useful with Google App Engine. There you can just do: main = app.cgirun() """ But in case of GAE cgirun() always returns None. It executed WSGI application once and returns (GAE's `run_wsgi_app` even daesn't have explicit return statement!). application.cgirun() doc string suggests such use case: """ Return a CGI handler. This is mostly useful with Google App Engine. There you can just do: main = app.cgirun() """ But in case of GAE cgirun() always returns None. It executed WSGI application once and returns (GAE's `run_wsgi_app` even daesn't have explicit return statement!). It cause GAE not to cache handler module as expected.