[Python-checkins] python/dist/src/Misc SpecialBuilds.txt,1.9,1.10

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 10 Jul 2002 18:04:35 -0700


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

Modified Files:
	SpecialBuilds.txt 
Log Message:
Replace rare tabs with 4 spaces, assuming that's what was intended.


Index: SpecialBuilds.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/SpecialBuilds.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** SpecialBuilds.txt	11 Jul 2002 00:38:05 -0000	1.9
--- SpecialBuilds.txt	11 Jul 2002 01:04:32 -0000	1.10
***************
*** 147,160 ****
  
      /* Number of times an object of this type was allocated. */
! 	int tp_allocs;
  
      /* Number of times an object of this type was deallocated. */
! 	int tp_frees;
  
! 	/* Highwater mark:  the maximum value of tp_allocs - tp_frees so
! 	 * far; or, IOW, the largest number of objects of this type alive at
! 	 * the same time.
! 	 */
! 	int tp_maxalloc;
  
  Allocation and deallocation code keeps these counts up to date.
--- 147,160 ----
  
      /* Number of times an object of this type was allocated. */
!     int tp_allocs;
  
      /* Number of times an object of this type was deallocated. */
!     int tp_frees;
  
!     /* Highwater mark:  the maximum value of tp_allocs - tp_frees so
!      * far; or, IOW, the largest number of objects of this type alive at
!      * the same time.
!      */
!     int tp_maxalloc;
  
  Allocation and deallocation code keeps these counts up to date.