On May 15, 2008, at 02:24 , David Zhou wrote:
> > On May 14, 2008, at 7:06 PM, Viktor Nagy wrote: > >> one of my functions follows, here it doesn't matter if I uncomment >> the >> raide exception line, it never gets raised. On the other hand I am >> sent to the authorization page. The getDocument function get's called >> from a "request handler" function (myproject.myapp.views.index) > > > Are you restarting the server between module changes? By default Django does no caching of responses. It's probably what Viktor says: the server (mod_python, mod_wsgi, whatever) won't automatically reload the python code if you change it. The automatic reload behaviour only happens with Django's built-in development server. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

