PyMem_MALLOC (was [Python-Dev] Snake farm)

Guido van Rossum guido@python.org
Fri, 22 Nov 2002 11:18:34 -0500


This can be solved (as MAL suggested) by fixing configure so that
malloc(0) returning 0x800 is treated the same as malloc(0) returning
NULL.  That way, pymalloc's free code doesn't have to special-case
this.

--Guido van Rossum (home page: http://www.python.org/~guido/)