[Python-checkins] python/dist/src/Modules _hotshot.c,1.27,1.28

mwh@users.sourceforge.net mwh@users.sourceforge.net
Wed, 11 Sep 2002 10:09:48 -0700


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

Modified Files:
	_hotshot.c 
Log Message:
Fix *really* embarrassing typo reported by Raymond Hettinger.



Index: _hotshot.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_hotshot.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** _hotshot.c	11 Sep 2002 15:36:32 -0000	1.27
--- _hotshot.c	11 Sep 2002 17:09:45 -0000	1.28
***************
*** 889,893 ****
      case PyTrace_LINE:
          if (self->linetimings)
!             return pack_lineno_tdelta(self, frame->f_lineno),
  				      get_tdelta(self));
          else
--- 889,893 ----
      case PyTrace_LINE:
          if (self->linetimings)
!             return pack_lineno_tdelta(self, frame->f_lineno,
  				      get_tdelta(self));
          else