* sturlamolden, on 07.07.2010 21:12:
On 7 Jul, 06:54, "Alf P. Steinbach /Usenet"<alf.p.steinbach
+use...@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.

So?


Cheers,

- Alf

--
blog at <url: http://alfps.wordpress.com>
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to