Added words about what PyArena_Malloc() does.

This commit is contained in:
Tim Peters 2006-03-02 21:14:45 +00:00
parent cb9426b5f4
commit 6fd92dc44f
2 changed files with 17 additions and 5 deletions

View file

@ -150,7 +150,7 @@ PyArena_Malloc(PyArena *arena, size_t size)
arena->total_blocks++;
arena->total_block_size += arena->a_cur->ab_size;
if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE)
arena->total_big_blocks++;
++arena->total_big_blocks;
#endif
}
return p;