> On Fri, Mar 6, 2009 at 11:48 AM, Sturla Molden <[email protected]> wrote:
> However, AFAIK the simplified GIL API does not suport multiple > interpreters, right? > > Could we do it better? That is correct. It does not support multiple interpreters. Sub-interpreters are a misfeature of CPython anyway. All sorts of weird things can happen when they are used. They are not completely isolated, and many extension modules do not honor them. Sub-interpreters are not useful like .NET appdomains, Java isolates, or tcl threads. Their only raison d'etre seems to be the internals of Apache's mod_python. Sturla Molden _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
