Albert Strasheim wrote: >Dialog pops up: > >--------------------------- >python.exe - Application Error >--------------------------- >The exception unknown software exception (0xc0000029) occurred in the >application at location 0x7c86d474. > > >Click on OK to terminate the program >Click on CANCEL to debug the program >--------------------------- >OK Cancel >--------------------------- > >In the Python console it prints: > >-2147483648 > >If you can give me some idea of what should be happening, I can take a look >at fixing it. > >
When does the crash happen? Does it happen when you press Ctrl-C? What's supposed to be happening is that we are registering a handler for Ctrl-C that longjmps back to just after the code between NPY_SIGINT_ON and NPY_SIGINT_OFF. I'm not sure how to actually accomplish something like that under windows as I've heard mention that longjmp should not be used with signals under win32. The easy "fix" is to just define NPY_NO_SIGNAL in setup.py when on a platform that doesn't support using signals and longjmp (like apparently win32). If you could figure out what to do instead on windows that would be preferrable. -Travis ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Numpy-discussion mailing list Numpy-discussion@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/numpy-discussion