Re: [Python-Dev] pdb mini-sprint report and questions

2010-08-02 Thread Nick Coghlan
On Mon, Aug 2, 2010 at 10:10 AM, Ilya Sandler wrote: > Hello, > > I'm the submitter of the original patch and would like to help with it if I > can. > >> One issue that's not yet closed is #7245, which adds a (very nice IMO) >> feature: when you press Ctrl-C while the program being debugged runs,

Re: [Python-Dev] pdb mini-sprint report and questions

2010-08-01 Thread Ilya Sandler
Hello, I'm the submitter of the original patch and would like to help with it if I can. > One issue that's not yet closed is #7245, which adds a (very nice IMO) > feature: when you press Ctrl-C while the program being debugged runs, > you will not get a traceback but execution is suspended, and y

Re: [Python-Dev] pdb mini-sprint report and questions

2010-07-31 Thread Barry Warsaw
On Jul 31, 2010, at 12:45 AM, Georg Brandl wrote: >to warm up for tomorrow's 3.2alpha1 release, I did a mini-sprint on >pdb issues today. I'm pleased to report that 14 issues could be >closed, and pdb got a range of small new features, such as commands on >the command line, "until " or "longlist"

Re: [Python-Dev] pdb mini-sprint report and questions

2010-07-30 Thread Guido van Rossum
On Fri, Jul 30, 2010 at 4:07 PM, Georg Brandl wrote: > Am 31.07.2010 01:01, schrieb Guido van Rossum: >> Warning: 'p' is *not* the same as 'print'. 'p' is a built-in command >> that prints the expression's repr(). 'print' OTOH falls back through >> the interpreter and executes a print statement or

Re: [Python-Dev] pdb mini-sprint report and questions

2010-07-30 Thread Georg Brandl
Am 31.07.2010 01:01, schrieb Guido van Rossum: > On Fri, Jul 30, 2010 at 3:45 PM, Georg Brandl wrote: >> to warm up for tomorrow's 3.2alpha1 release, I did a mini-sprint on >> pdb issues today. I'm pleased to report that 14 issues could be closed, >> and pdb got a range of small new features, suc

Re: [Python-Dev] pdb mini-sprint report and questions

2010-07-30 Thread Guido van Rossum
On Fri, Jul 30, 2010 at 3:45 PM, Georg Brandl wrote: > to warm up for tomorrow's 3.2alpha1 release, I did a mini-sprint on > pdb issues today.  I'm pleased to report that 14 issues could be closed, > and pdb got a range of small new features, such as commands on the > command line, "until " or "lo

[Python-Dev] pdb mini-sprint report and questions

2010-07-30 Thread Georg Brandl
Hi, to warm up for tomorrow's 3.2alpha1 release, I did a mini-sprint on pdb issues today. I'm pleased to report that 14 issues could be closed, and pdb got a range of small new features, such as commands on the command line, "until " or "longlist" showing all the code for the current function (th