Undo previous patch; it did not quite work out.

This commit is contained in:
Fred Drake 2001-10-03 21:12:32 +00:00
parent 57fc21018f
commit a0bc9993e7
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ class Profile:
def trace_dispatch_exception(self, frame, t):
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 0