Hi,<br><br>I just started experimenting with stackless for a project we are running here at my workplace.<br><br>I immediately noticed a bug when trying to run it in a 64-bit environment, and I have a fix for that problem.
<br><br>How do these things work with you guys? where is the bug report page???<br>I think your web page should be clearer on these issues, and contain a minimal bug tracker/issue tracker...<br><br>Index: Stackless/module/stacklessmodule.c
<br>===================================================================<br>--- Stackless/module/stacklessmodule.c (revision 57019)<br>+++ Stackless/module/stacklessmodule.c (working copy)<br>@@ -285,7 +285,7 @@<br> PyInterpreterState *interp = ts->interp;
<br> long id = 0;<br><br>- if (!PyArg_ParseTuple(args, "|i:get_thread_info", &id))<br>+ if (!PyArg_ParseTuple(args, "|l:get_thread_info", &id))<br> return NULL;
<br> for (ts = interp->tstate_head; id && ts != NULL; ts = ts->next) {<br> if (ts->thread_id == id)<br><br>Thanks,<br clear="all"><br>-- <br>Rotem