[Python-checkins] r42760 - python/branches/tim-obmalloc/Objects/obmalloc.c
tim.peters
python-checkins at python.org
Thu Mar 2 00:12:22 CET 2006
Author: tim.peters
Date: Thu Mar 2 00:12:22 2006
New Revision: 42760
Modified:
python/branches/tim-obmalloc/Objects/obmalloc.c
Log:
Typo repair.
Modified: python/branches/tim-obmalloc/Objects/obmalloc.c
==============================================================================
--- python/branches/tim-obmalloc/Objects/obmalloc.c (original)
+++ python/branches/tim-obmalloc/Objects/obmalloc.c Thu Mar 2 00:12:22 2006
@@ -912,10 +912,10 @@
* the system free().
* 2. If this is the only free pool in the arena,
* add the arena back to the `usable_arenas` list.
- * 3. If the "next" arena has a smaller count of
- * of free pools, we have to "push this arena right"
- * to restore that `usable_arenas` is sorted in
- * order of nfreepools.
+ * 3. If the "next" arena has a smaller count of free
+ * pools, we have to "push this arena right" to
+ * restore that `usable_arenas` is sorted in order
+ * of nfreepools.
* 4. Else there's nothing more to do.
*/
if (nf == ao->ntotalpools) {
More information about the Python-checkins
mailing list