From: Walter Dörwald Date: Tue, 17 Jun 2003 15:48:11 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.3c1~397 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0a1bb6341ea87d811947c84dcce3d84147a93fd;p=python Whitespace normalization. --- diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index cd85657150..7e5fd4a8e9 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -651,9 +651,9 @@ PyObject_Malloc(size_t nbytes) UNLOCK(); return (void *)bp; } - /* - * Allocate new pool - */ + /* + * Allocate new pool + */ if (nfreepools) { commit_pool: --nfreepools; @@ -663,9 +663,9 @@ PyObject_Malloc(size_t nbytes) pool->szidx = DUMMY_SIZE_IDX; goto init_pool; } - /* - * Allocate new arena - */ + /* + * Allocate new arena + */ #ifdef WITH_MEMORY_LIMITS if (!(narenas < MAX_ARENAS)) { UNLOCK();