raise_exception() was using METH_KEYWORDS without METH_VARARGS, which, in the py3k line at least, appears to be an invalid calling convention. The method itself is defined to expect a tuple of args, which implies it should really be defined as METH_VARARGS.
The attached patch (to the py3k branch) corrects this. -- Jon Parise (jon of indelible.org) :: "Scientia potentia est"
tasklet_raise_exception.patch
Description: Binary data
_______________________________________________ Stackless mailing list [email protected] http://www.stackless.com/mailman/listinfo/stackless
