[Python-checkins] CVS: python/dist/src/Lib profile.py,1.31,1.32

Fred L. Drake fdrake@users.sourceforge.net
Wed, 03 Oct 2001 14:12:34 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv1023

Modified Files:
	profile.py 
Log Message:
Undo previous patch; it did not quite work out.

Index: profile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/profile.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** profile.py	2001/09/27 16:28:42	1.31
--- profile.py	2001/10/03 21:12:32	1.32
***************
*** 242,246 ****
      def trace_dispatch_exception(self, frame, t):
          rt, rtt, rct, rfn, rframe, rcur = self.cur
!         if (rframe is frame) and rcur:
              return self.trace_dispatch_return(rframe, t)
          return 0
--- 242,246 ----
      def trace_dispatch_exception(self, frame, t):
          rt, rtt, rct, rfn, rframe, rcur = self.cur
!         if (rframe is not frame) and rcur:
              return self.trace_dispatch_return(rframe, t)
          return 0