Download Microsoft C/C++ compiler for use with Python 2.6/2.7 ASAP

sturlamolden sturlamolden at yahoo.no
Wed Jul 7 15:12:14 EDT 2010


On 7 Jul, 06:54, "Alf P. Steinbach /Usenet" <alf.p.steinbach
+use... at gmail.com> wrote:

> PyAPI_FUNC(void *) PyMem_Malloc(size_t);
>
> #define PyMem_MALLOC(n)         (((n) < 0 || (n) > PY_SSIZE_T_MAX) ? NULL \
>                                 : malloc((n) ? (n) : 1))

I was afraid of that :(



> Except for the problems with file descriptors I think a practical interim
> solution for extensions implemented in C could be to just link the runtime lib
> statically.

You still have two CRTs linked into the same process.






More information about the Python-list mailing list