[Python-checkins] r42704 - python/branches/tim-obmalloc/Objects/obmalloc.c

tim.peters python-checkins at python.org
Wed Mar 1 01:47:27 CET 2006


Author: tim.peters
Date: Wed Mar  1 01:47:25 2006
New Revision: 42704

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	Wed Mar  1 01:47:25 2006
@@ -577,7 +577,7 @@
 #ifdef PYMALLOC_DEBUG
 	++ntimes_arena_allocated;
 #endif
-	/* base_address <- first pool-aligned address in the arena
+	/* pool_address <- first pool-aligned address in the arena
 	   nfreepools <- number of whole pools that fit after alignment */
 	arenaobj->pool_address = (block*)arenaobj->address;
 	arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE;


More information about the Python-checkins mailing list