Re: Python on Windows re-using old .pyc files?

2008-10-21 Thread Graham Dumpleton
On Oct 21, 10:51 pm, Thomas Guettler <[EMAIL PROTECTED]> wrote: > Ulf Kronman schrieb:> I'm using Django trunk and I have set the > MaxRequestsPerChild 1 > > directive in httpd.conf. I'm running on Windows XP (sp3?). > > Here a guess: > > Apache creates several threads (or worker processes) and

Re: Python on Windows re-using old .pyc files?

2008-10-21 Thread Ulf Kronman
Hi Thomas, > Apache creates several threads (or worker processes) and after one > request the thread/process gets killed. But the other are still alive and > have the old code loaded. > > Maybe you could try mod_wsgi. It is much more flexible. Thanks for the tip. It seems as this could be the

Re: Python on Windows re-using old .pyc files?

2008-10-21 Thread Thomas Guettler
Ulf Kronman schrieb: > I'm using Django trunk and I have set the MaxRequestsPerChild 1 > directive in httpd.conf. I'm running on Windows XP (sp3?). > Here a guess: Apache creates several threads (or worker processes) and after one request the thread/process gets killed. But the other are