Python crash after using weave inline

2007-04-18 Thread Soren
Hi, I have a strange and very annoying problem when using weave in scipy.. when I run the code below.. the first time it needs to compile.. it says compiling and then python.exe crashes! and no result is shown.. the second time i run it, it does not compile but gives the completely wrong answer..

Re: Python crash after using weave inline

2007-04-18 Thread Peter Wang
Soren, For future reference, you might want to direct weave-related questions to the [EMAIL PROTECTED] mailing list. def cartPolFast(xlen, ylen, x_c, y_c): res = zeros((xlen,ylen)) code = { int xlen, ylen, x_c, y_c; This line is unnecessary, because weave exposes those

Re: Python crash after using weave inline

2007-04-18 Thread Soren
On Apr 18, 10:07 pm, Peter Wang [EMAIL PROTECTED] wrote: Soren, For future reference, you might want to direct weave-related questions to the [EMAIL PROTECTED] mailing list. def cartPolFast(xlen, ylen, x_c, y_c): res = zeros((xlen,ylen)) code = { int xlen, ylen,