Florian Lindner wrote:
Hello,
what tools do you use for debugging your Zope applications and/or the Zope source?
>
> Is there something more comforable (more graphical) than pdb
> available? I've tried eric3 but it does not work,

There are a number of debuggers available for Python. Graphical debuggers
include Wing and Kimodo.  Zope doesn't require anything special.

pdb interacts with emacs in a way that makes emacs almost graphical. :)
As I step through code, emacs displays it and highlights the line being
executed.

probably due to Zope3 spawning processes.

As a rule, you should try to avoid debugging Zope as an app server.
You want to find and debug modt problems in tests, which are much easier
to debug than a server.

Jim

--
Jim Fulton           mailto:[EMAIL PROTECTED]       Python Powered!
CTO                  (540) 361-1714            http://www.python.org
Zope Corporation     http://www.zope.com       http://www.zope.org
_______________________________________________
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com

Reply via email to