Re: [Python-Dev] gdbinit problem

2005-09-05 Thread Guido van Rossum
On 9/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Neal> The only way I could see to fix it was by setting a continue flag > Neal> and testing it. Does anyone know a better way to fix this > Neal> problem? > > Certainly looks reasonable until we figure out how (if at all) GD

Re: [Python-Dev] gdbinit problem

2005-09-05 Thread skip
Neal> The only way I could see to fix it was by setting a continue flag Neal> and testing it. Does anyone know a better way to fix this Neal> problem? Certainly looks reasonable until we figure out how (if at all) GDB's command language implements a break-like statement. Skip

Re: [Python-Dev] gdbinit problem

2005-09-05 Thread Guido van Rossum
On 9/4/05, Neal Norwitz <[EMAIL PROTECTED]> wrote: > break in gdbinit is apparently does not break a loop, but rather sets > a break point. I don't know how to hit the break within lineno with a > simple test case. Debugging pychecker with a C extension (matplotlib) > triggers it. > > The only w

[Python-Dev] gdbinit problem

2005-09-04 Thread Neal Norwitz
break in gdbinit is apparently does not break a loop, but rather sets a break point. I don't know how to hit the break within lineno with a simple test case. Debugging pychecker with a C extension (matplotlib) triggers it. The only way I could see to fix it was by setting a continue flag and tes