On Fri, Mar 6, 2009 at 9:46 AM, Brian Neal <bgn...@gmail.com> wrote:
> I updated my working copy of Django after a long period and was
> browsing the source and noticed it was taking advantage of the Python
> warnings module. What is the best way to "see" such warnings when
> doing development? Is it possible to configure Python or the Django
> development server to display such warning messages?

You want the ``-W`` flag to the python binary; see ``python --help``
for more. Essentially, you'll do::

    python -Wall manage.py runserver

Jacob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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