I use Wing IDE (not free, wingide.com). It contains a full debugger
that worked for me with Django with minimal fuss. I can step through
the whole thing by debugging the manage.py runserver --noreload

The thing I find most valuable about their debugger is that it gives
you a full python shell (with autocomplete) that evaluates to wherever
your debugger is at the time. So you can set a breakpoint in a
function that's giving you trouble and then run whatever python
commands you'd like to in order to figure out what's going on. Pretty
solid. I used Eclipse with pydev for 4 months and it was causing some
stability issues with my machine. I was also having some trouble with
the autocomplete terms and it doesn't have a debugger that I could get
working. Eclipse + pydev is the best free option I found, but throwing
down the cash for Wing IDE has been a good investment in my particular
situation.

Hope that helps
-wes

On Aug 22, 2:20 pm, Delta20 <[EMAIL PROTECTED]> wrote:
> This question is aimed at those of you who, like me, come from a Java
> and C++ background and are used to being able to debug things with a
> debugger - setting breakpoints, stepping through code, evaluating
> expressions, etc. What do you find to be the most productive approach
> to debugging Django apps?
>
> Personally, I've been trying to get PyDev to work but attempting to
> run a Django app crashes Eclipse every time for me so I haven't been
> able to evaluate its debugger. I don't much like Eclipse anyway and am
> hoping the NetBeans Python debugger will provide a viable
> alternative.
>
> I'm new to both Python and Django, and right now I feel horribly
> unproductive without an efficient way to debug things.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to