[Python-checkins] python/dist/src/Lib profile.py,1.56,1.57

mondragon at users.sourceforge.net mondragon at users.sourceforge.net
Mon Jul 12 15:44:28 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18767/Lib

Modified Files:
	profile.py 
Log Message:
Fix SF Bug #989066


Index: profile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/profile.py,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** profile.py	7 Jul 2004 20:54:45 -0000	1.56
--- profile.py	12 Jul 2004 13:44:26 -0000	1.57
***************
*** 217,221 ****
  
          if event == "c_call":
!             self.c_func_name = arg
  
          if self.dispatch[event](self, frame,t):
--- 217,221 ----
  
          if event == "c_call":
!             self.c_func_name = repr(arg)
  
          if self.dispatch[event](self, frame,t):
***************
*** 234,238 ****
  
          if event == "c_call":
!             self.c_func_name = arg
  
          if self.dispatch[event](self, frame, t):
--- 234,238 ----
  
          if event == "c_call":
!             self.c_func_name = repr(arg)
  
          if self.dispatch[event](self, frame, t):
***************
*** 249,253 ****
  
          if event == "c_call":
!             self.c_func_name = arg
  
          if self.dispatch[event](self, frame, t):
--- 249,253 ----
  
          if event == "c_call":
!             self.c_func_name = repr(arg)
  
          if self.dispatch[event](self, frame, t):
***************
*** 263,267 ****
  
          if event == "c_call":
!             self.c_func_name = arg
  
          if self.dispatch[event](self, frame, t):
--- 263,267 ----
  
          if event == "c_call":
!             self.c_func_name = repr(arg)
  
          if self.dispatch[event](self, frame, t):



More information about the Python-checkins mailing list