On Dec 8, 9:45 am, Sameer Rahmani <lxsam...@gmail.com> wrote:
> i want to know just about development server . i mean i just want to know
> when my code run under development server:

The body of you post asked about both. :-)

> if development_server:
>       some code

If this is for debugging code, then you are perhaps better off looking
to see if DEBUG is set in Django settings. That way if really need to
you can still turn on debug in production Apache environment.

FWIW, if using mod_python or mod_wsgi there should be no __main__
module, thus:

  if '__main__' in sys.modules:
    # not Apache mod_python or mod_wsgi

If you were using fastcgi/flup, would still be a '__main__' though.

Graham

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to