Re: XMLRPC - C Client / Python Server

2008-10-01 Thread care02
On 30 Sep, 21:58, Michael Torrie <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > I have implemented a simple Python XMLRPC server and need to call it > > from a C/C++ client. What is the simplest way to do this? I need to > > pass numerical arrays from C/C++ to Python. > > Which do you ne

XMLRPC - C Client / Python Server

2008-09-30 Thread care02
I have implemented a simple Python XMLRPC server and need to call it from a C/C++ client. What is the simplest way to do this? I need to pass numerical arrays from C/C++ to Python. Yours, Carl -- http://mail.python.org/mailman/listinfo/python-list

How to minimize command window when running wxPython script

2007-08-24 Thread care02
Dear friends, I have almost completed my first wxPython application. The only thing I need now is to minimize the command window. How is this accomplished on Win32? What about Mac and Linux? Carl -- http://mail.python.org/mailman/listinfo/python-list

How can I kill a running thread when exiting from __main__

2007-04-03 Thread care02
Hi! I have the following problem: I have written a short Python server that creates an indefinite simulation thread that I want to kill when quitting (Ctrl-C) from Python. Googling around has not given me any hints on how to cleanly kill running threads before exiting. Any help is appreciated! Ca