On Tue, 20 Jun 2006 13:01:31 -0000 "Filipe" <[EMAIL PROTECTED]> wrote:
<snip> > Rephrasing my initial question a bit, can someone advise me on an > IDE in which to build a django app that will allow me to > "graphically" use a debugger? (ie, place breakpoints, inspect > values in vars, see the current execution stack, etc) I've found eclipse is pretty good but you need the PyDev plugin (pydev.sf.net). It uses pylint for reporting syntax errors, warnings, etc. I haven't found the exact right settings to use for django though, it complains about something that I know is right (import error) so I have to setup the PYTHONPATH correctly probably. I know it has support for debugging, but I personally cannot vouch for how good it is. I used to hate Eclipse, but I've actually found using it for python development pretty rewarding, and the built-in pylint checking has saved me from checking in some embarassing code inside an exception handler or something. Another nice thing with Eclipse is that it's cross platform - takes a few seconds to start up (java you know) but once it's up it's plenty responsive in my opinion. FWIW - there's also a commercial plugin built on top of pydev that I noticed has additional debugging support - http://www.fabioz.com/pydev/ - never used it though. Josh --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

