Re: [BangPypers] link

2009-09-04 Thread srid
On Thu, Sep 3, 2009 at 8:09 PM, Roshan Mathewsrmath...@gmail.com wrote: I recently read of an IDE for python which code-stepping and a fancy debugger.  Don't remember which one it was though ... Many of them exist - ActiveState Komodo, Wing IDE, Eric3 and so on. -srid

Re: [BangPypers] link

2009-09-04 Thread Noufal Ibrahim
On Fri, Sep 4, 2009 at 11:44 AM, sridsridhar.ra...@gmail.com wrote: On Thu, Sep 3, 2009 at 8:09 PM, Roshan Mathewsrmath...@gmail.com wrote: I recently read of an IDE for python which code-stepping and a fancy debugger.  Don't remember which one it was though ... Many of them exist -

Re: [BangPypers] link

2009-09-04 Thread Sahasranaman MS
On Fri, Sep 4, 2009 at 1:08 PM, Kenneth Gonsalves law...@au-kbc.org wrote: On Friday 04 Sep 2009 12:34:20 pm bhaskar jain wrote: vim! geany! NetBeans! ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] link

2009-09-04 Thread Noufal Ibrahim
Anyone used http://pythonide.blogspot.com/? It's special purpose but it's got a bit of reputation from what I hear. -- ~noufal http://nibrahim.net.in ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] link

2009-09-04 Thread Kenneth Gonsalves
On Friday 04 Sep 2009 1:26:18 pm Noufal Ibrahim wrote: Anyone used http://pythonide.blogspot.com/? It's special purpose but it's got a bit of reputation from what I hear. stani is a great guy - he won a prize for designing the dutch 5 euro commemorative coin a couple of years back. I have

Re: [BangPypers] link

2009-09-04 Thread Carl Karsten
On Fri, Sep 4, 2009 at 3:14 AM, Kenneth Gonsalveslaw...@au-kbc.org wrote: On Friday 04 Sep 2009 1:26:18 pm Noufal Ibrahim wrote: Anyone used http://pythonide.blogspot.com/? It's special purpose but it's got a bit of reputation from what I hear. stani is a great guy - he won a prize for

Re: [BangPypers] link

2009-09-04 Thread Roshan Mathews
On Fri, Sep 4, 2009 at 11:54 AM, Noufal Ibrahimnou...@gmail.com wrote: On Fri, Sep 4, 2009 at 11:44 AM, sridsridhar.ra...@gmail.com wrote: On Thu, Sep 3, 2009 at 8:09 PM, Roshan Mathewsrmath...@gmail.com wrote: I recently read of an IDE for python which code-stepping and a fancy debugger.  

Re: [BangPypers] link

2009-09-03 Thread bhaskar jain
:) He is Guido! I am a mere mortal! On Thu, Sep 3, 2009 at 10:46 PM, Noufal Ibrahim nou...@gmail.com wrote: On Thu, Sep 3, 2009 at 10:43 PM, bhaskar jainbhaskar.jain2...@gmail.com wrote: Nice link - http://aymanh.com/python-debugging-techniques We can have this thread were we discuss our

Re: [BangPypers] link

2009-09-03 Thread Noufal Ibrahim
On Thu, Sep 3, 2009 at 10:50 PM, bhaskar jainbhaskar.jain2...@gmail.com wrote:  :) He is Guido! I am a mere mortal! It is an interesting point though. Back when I used to code in C, I always jumped for gdb and GUD whenever I needed chase a bug. WIth Python, I don't really know how to use pdb.

Re: [BangPypers] link

2009-09-03 Thread steve
On 09/03/2009 10:46 PM, Noufal Ibrahim wrote: On Thu, Sep 3, 2009 at 10:43 PM, bhaskar jainbhaskar.jain2...@gmail.com wrote: Nice link - http://aymanh.com/python-debugging-techniques We can have this thread were we discuss our own debugging techniques. I uses syslog :( and kind of like

Re: [BangPypers] link

2009-09-03 Thread srid
On Thu, Sep 3, 2009 at 10:16 AM, Noufal Ibrahimnou...@gmail.com wrote: * Debugging: Guido uses print statements for 90% of his debugging and a debugger for the times when his brain stops working or he has to debug some wierd code that someone else wrote.

Re: [BangPypers] link

2009-09-03 Thread Roshan Mathews
On Fri, Sep 4, 2009 at 7:33 AM, sridsridhar.ra...@gmail.com wrote: I too use print statements almost all the time. Even for debugging CPython code. I guess it is due to my own laziness. Putting `print` or `LOG.debug` is much easier/quicker compared to firing up a debugging console (and