Commit a0bc9993 authored by Fred Drake's avatar Fred Drake

Undo previous patch; it did not quite work out.

parent 57fc2101
...@@ -241,7 +241,7 @@ class Profile: ...@@ -241,7 +241,7 @@ class Profile:
def trace_dispatch_exception(self, frame, t): def trace_dispatch_exception(self, frame, t):
rt, rtt, rct, rfn, rframe, rcur = self.cur rt, rtt, rct, rfn, rframe, rcur = self.cur
if (rframe is frame) and rcur: if (rframe is not frame) and rcur:
return self.trace_dispatch_return(rframe, t) return self.trace_dispatch_return(rframe, t)
return 0 return 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment