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

Tim Peters tim_one@users.sourceforge.net
Sun, 07 Oct 2001 01:49:04 -0700


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

Modified Files:
	profile.py 
Log Message:
Typo repair in comment.


Index: profile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/profile.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** profile.py	2001/10/07 08:35:44	1.38
--- profile.py	2001/10/07 08:49:02	1.39
***************
*** 118,122 ****
      [ 1] = Total time spent in this frame's function, excluding time in
             subfunctions (this latter is tallied in cur[2]).
!     [ 2] = Total time spent in subfunctions, excluding time execute the
             frame's function (this latter is tallied in cur[1]).
      [-3] = Name of the function that corresponds to this frame.
--- 118,122 ----
      [ 1] = Total time spent in this frame's function, excluding time in
             subfunctions (this latter is tallied in cur[2]).
!     [ 2] = Total time spent in subfunctions, excluding time executing the
             frame's function (this latter is tallied in cur[1]).
      [-3] = Name of the function that corresponds to this frame.