@@ -118,7 +118,7 @@ static Py_ssize_t long_lived_pending = 0;
118118
119119/*
120120 NOTE: about untracking of mutable objects.
121-
121+
122122 Certain types of container cannot participate in a reference cycle, and
123123 so do not need to be tracked by the garbage collector. Untracking these
124124 objects reduces the cost of garbage collections. However, determining
@@ -136,10 +136,10 @@ static Py_ssize_t long_lived_pending = 0;
136136 not survive until garbage collection. It is therefore not worthwhile
137137 to untrack eligible tuples at creation time.
138138
139- Instead, all tuples except the empty tuple are tracked when created.
140- During garbage collection it is determined whether any surviving tuples
141- can be untracked. A tuple can be untracked if all of its contents are
142- already not tracked. Tuples are examined for untracking in all garbage
139+ Instead, all tuples except the empty tuple are tracked when created.
140+ During garbage collection it is determined whether any surviving tuples
141+ can be untracked. A tuple can be untracked if all of its contents are
142+ already not tracked. Tuples are examined for untracking in all garbage
143143 collection cycles. It may take more than one cycle to untrack a tuple.
144144
145145 Dictionaries containing only immutable objects also do not need to be
@@ -152,8 +152,8 @@ static Py_ssize_t long_lived_pending = 0;
152152 The module provides the python function is_tracked(obj), which returns
153153 the CURRENT tracking status of the object. Subsequent garbage
154154 collections may change the tracking status of the object.
155-
156- Untracking of certain containers was introduced in issue #4688, and
155+
156+ Untracking of certain containers was introduced in issue #4688, and
157157 the algorithm was refined in response to issue #14775.
158158*/
159159
0 commit comments