Nothing more intelligent at this point. I will need to run a test with pypy myself to work it out. I have looked through pypy sandbox code a bit and at least understand what you are talking about. Going to be a busy day tomorrow, but if lucky may get a chance to look at it in the evening.
Graham 2009/2/23 Graham Dumpleton <[email protected]>: > 2009/2/23 Dalius Dobravolskas <[email protected]>: >> >> On Sun, Feb 22, 2009 at 11:20 PM, Graham Dumpleton >> <[email protected]> wrote: >>> Try patch or just use version from 2.X branch out of subversion: >>> >>> http://code.google.com/p/modwsgi/wiki/ChangesInVersion0204 >> I have tried to use this version. SIGTERM still does not work. Only SIGKILL. > > While I think of something more intelligent to say, in your code you have: > > page = """ .....""" > > return page > > Thus, returning string from WSGI application. This is very > inefficient. Result should be an iterable, which string qualifies as, > but end result will be that single character is flush at a time. Use > instead: > > return [page] > > Graham > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
