Re: [Zope3-Users] Debugger for Zope 3

2006-06-02 Thread Stephan Richter
On Wednesday 26 April 2006 06:53, Lennart Regebro wrote: > On 4/26/06, Stephan Richter <[EMAIL PROTECTED]> wrote: > > WingIDE's debugger is superb. Once you set the thread count to 1 it > > should work. At some point we'll have to write a small package that > > installs the debugger hook automatica

Re: [Zope3-Users] Debugger for Zope 3

2006-04-26 Thread Lennart Regebro
On 4/26/06, Stephan Richter <[EMAIL PROTECTED]> wrote: > WingIDE's debugger is superb. Once you set the thread count to 1 it should > work. At some point we'll have to write a small package that installs the > debugger hook automatically. For now duplicating the Zope 2 steps and the > Zope 2 produc

Re[2]: [Zope3-Users] Debugger for Zope 3

2006-04-26 Thread Adam Groszer
Hi, If we are coming to commercial IDEs then Komodo is also a good choice for debugging. You just have to put it's dbgp module on the PYTHONPATH and use the below small script to avoid some irritating deprecation mesages. After this, you put brk() in you code and it will stop there. After it was

Re: [Zope3-Users] Debugger for Zope 3

2006-04-26 Thread Stephan Richter
On Tuesday 25 April 2006 08:27, Achim Domma wrote: > I would like to start Zope 3 with the debugger, set some breakpoints in > my modules and step through the code to learn more about Zope. WingIDE's debugger is superb. Once you set the thread count to 1 it should work. At some point we'll have t

Re: [Zope3-Users] Debugger for Zope 3

2006-04-25 Thread Alek Kowalczyk
Achim Domma napisał(a): Hi, could somebody recommend a good visual debugger (not pdb) which can be used with Zope 3? I would like to start Zope 3 with the debugger, set some breakpoints in my modules and step through the code to learn more about Zope. I use eclipse 3.1 with pydev 1.0.x. It

Re: [Zope3-Users] Debugger for Zope 3

2006-04-25 Thread Andre Meyer
Winpdb is an excellent one: http://www.digitalpeers.com/pythondebugger/ I have never used it with Zope, but with other multi-threaded applications and it works very nicely on all OSs that support Python (in spite of its name). cheers & success AndréOn 4/25/06, Achim Domma <[EMAIL PROTECTED]> wrot

[Zope3-Users] Debugger for Zope 3

2006-04-25 Thread Achim Domma
Hi, could somebody recommend a good visual debugger (not pdb) which can be used with Zope 3? I would like to start Zope 3 with the debugger, set some breakpoints in my modules and step through the code to learn more about Zope. regards, Achim ___