diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-02 21:14:45 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-02 21:14:45 (GMT) |
commit | 6fd92dc44f6bd6d0bb0308b298d21f181b083bd2 (patch) | |
tree | b11799bfbb86c474c26cc08abf39f7b45b33f9da /Python | |
parent | cb9426b5f4994c50f7981b9c3753ab7832917d25 (diff) | |
download | cpython-6fd92dc44f6bd6d0bb0308b298d21f181b083bd2.zip cpython-6fd92dc44f6bd6d0bb0308b298d21f181b083bd2.tar.gz cpython-6fd92dc44f6bd6d0bb0308b298d21f181b083bd2.tar.bz2 |
Added words about what PyArena_Malloc() does.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pyarena.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pyarena.c b/Python/pyarena.c index 3b3c162..33261b4 100644 --- a/Python/pyarena.c +++ b/Python/pyarena.c @@ -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; |