Re: Single-stepping through a python script

2007-07-18 Thread Diez B. Roggisch
Craig Howard wrote: > >>Craig Howard schrieb: > >> Hello All: > >> > >> Is is possible to compile a code object and single-step through its > >> execution? > > >import pdb; pdb.set_trace() > > > >Look up the pdb module documentation. > > > >Diez > > Sorry, I didn't give enough detail.

Re: Single-stepping through a python script

2007-07-17 Thread Ben Finney
Craig Howard <[EMAIL PROTECTED]> writes: > Sorry, I didn't give enough detail. Is it possible to single-step > through a code object without using pdb? (Pdb uses the console which > is not what I want.) Rather than play elimination, could you tell us more about what you *do* want? That is, please

Single-stepping through a python script

2007-07-17 Thread Craig Howard
>>Craig Howard schrieb: >> Hello All: >> >> Is is possible to compile a code object and single-step through its >> execution? >import pdb; pdb.set_trace() > >Look up the pdb module documentation. > >Diez Sorry, I didn't give enough detail. Is it possible to single-step through a code

Re: Single-stepping through a python script

2007-07-17 Thread Diez B. Roggisch
Craig Howard schrieb: > Hello All: > > Is is possible to compile a code object and single-step through its > execution? import pdb; pdb.set_trace() Look up the pdb module documentation. Diez -- http://mail.python.org/mailman/listinfo/python-list

Single-stepping through a python script

2007-07-17 Thread Craig Howard
Hello All: Is is possible to compile a code object and single-step through its execution? Craig -- http://mail.python.org/mailman/listinfo/python-list