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
474,432
Messages
2,571,681
Members
48,796
Latest member
Greg L.

Latest Threads

Top