Skip to content

Commit a62544f

Browse files
author
doerwalter
committed
Whitespace normalization.
git-svn-id: http://svn.python.org/projects/python/trunk@33178 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent fa36889 commit a62544f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Objects/obmalloc.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -651,9 +651,9 @@ PyObject_Malloc(size_t nbytes)
651651
UNLOCK();
652652
return (void *)bp;
653653
}
654-
/*
655-
* Allocate new pool
656-
*/
654+
/*
655+
* Allocate new pool
656+
*/
657657
if (nfreepools) {
658658
commit_pool:
659659
--nfreepools;
@@ -663,9 +663,9 @@ PyObject_Malloc(size_t nbytes)
663663
pool->szidx = DUMMY_SIZE_IDX;
664664
goto init_pool;
665665
}
666-
/*
667-
* Allocate new arena
668-
*/
666+
/*
667+
* Allocate new arena
668+
*/
669669
#ifdef WITH_MEMORY_LIMITS
670670
if (!(narenas < MAX_ARENAS)) {
671671
UNLOCK();

0 commit comments

Comments
 (0)