]> granicus.if.org Git - python/commitdiff
Replace rare tabs with 4 spaces, assuming that's what was intended.
authorGuido van Rossum <guido@python.org>
Thu, 11 Jul 2002 01:04:32 +0000 (01:04 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 11 Jul 2002 01:04:32 +0000 (01:04 +0000)
Misc/SpecialBuilds.txt

index a30801fb90d464ebbe084bb0e6367ac2be4e62fc..1d91e6bacd1930f8e21104ea109df35de6bb5ca7 100644 (file)
@@ -146,16 +146,16 @@ COUNT_ALLOCS                                            introduced in 0.9.9
 Each type object grows three new members:
 
     /* Number of times an object of this type was allocated. */
-       int tp_allocs;
+    int tp_allocs;
 
     /* Number of times an object of this type was deallocated. */
-       int tp_frees;
+    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;
+    /* 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.
 Py_Finalize() displays a summary of the info returned by sys.getcounts()