Re: py2exe socket.gaierror (10093)

2008-03-26 Thread Knut
s when I compile the program I get this error. I don't get how the compile changes server availability. Thanks again, Knut -- http://mail.python.org/mailman/listinfo/python-list

Re: py2exe socket.gaierror (10093)

2008-03-27 Thread Knut
On 26 Mar, 23:08, Thomas Heller <[EMAIL PROTECTED]> wrote: > Knut schrieb: > > > > >> The script can't resolve the server name. Try to do it by hand using > >> nslookup or even ping (you may want to add a few print statements inside > >> the

Re: py2exe socket.gaierror (10093)

2008-03-27 Thread Knut
This is frustrating. I was working on writing a sample for my problem. I start with dissecting my code which still gives the same error. Then I start thinking that it might be my setup file doing the damage. And i start it from scratch. Everything suddenly works. Fine! i think, i will have to sta

python and pymat

2005-11-25 Thread Knut Birger Lunde
is the corresponding line in the makefile "PYTHON_LIB=-L${PYTHON_DIR} -lPython23". If I remove -Python23, the make program listst a lot og undefined references: "pymat.o(.text+0x9e):pymat.cpp: undefined reference to `_imp__PyErr_SetString'". Knut -- http:

Sending arrays of a structure as an argument via ctypes

2008-06-23 Thread Knut Saua Mathiesen
Hi there. I am reprogrammed my astar* path finding algorithm in C to make it quicker. I am now trying to make python use this C extension, however I keep getting "Segmentation fault". Some of the C stuff: typedef struct Point { int x; int y; } Point; typedef struct Node {