Single-stepping through a python script

Diez B. Roggisch deets at nospam.web.de
Tue Jul 17 18:44:15 EDT 2007


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



More information about the Python-list mailing list