diff options
author | Guido van Rossum <guido@python.org> | 2002-07-11 01:04:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-07-11 01:04:32 (GMT) |
commit | 0c08864fbbdf87a09ee1b0042344f87eeea07a3c (patch) | |
tree | 624e48379884a3a2d3d3442d085efeda95be72c3 /Misc | |
parent | 715a0c67b8f07773b48b519d2bd9bab7dc5cc7cc (diff) | |
download | cpython-0c08864fbbdf87a09ee1b0042344f87eeea07a3c.zip cpython-0c08864fbbdf87a09ee1b0042344f87eeea07a3c.tar.gz cpython-0c08864fbbdf87a09ee1b0042344f87eeea07a3c.tar.bz2 |
Replace rare tabs with 4 spaces, assuming that's what was intended.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/SpecialBuilds.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Misc/SpecialBuilds.txt b/Misc/SpecialBuilds.txt index a30801f..1d91e6b 100644 --- a/Misc/SpecialBuilds.txt +++ b/Misc/SpecialBuilds.txt @@ -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() |