Trouble using sys.settrace

T

tleeuwenburg

The code below produces no output. I would expect to see:

tracing...
tracing...
tracing...
tracing...
tracing...


I was wondering if anyone had any experience with this.

=================================
import sys

def mytrace(frame, event, arg):
print "tracing..."

sys.settrace(mytrace)

def foo():
for i in range(5):
print i

foo()
 
T

tleeuwenburg

The code below produces no output. I would expect to see:

tracing...
tracing...
tracing...
tracing...
tracing...

I was wondering if anyone had any experience with this.
Never mind, now it works.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top