try os.spawn() using the os module
--
http://mail.python.org/mailman/listinfo/python-list
Sorry to bring it back up, but is there a way to spawn the process
without Twisted?
--
http://mail.python.org/mailman/listinfo/python-list
Sorry, I should've specified - I'm familiar with sockets, but I was
referring to spawning a 'vi' process independent of my Python app..
Carl wrote:
> D wrote:
>
> > Thanks, Jean-Paul - is there any way to do it without using Twisted,
> > since I am not very familiar with it? (i.e. just using the
D wrote:
> Thanks, Jean-Paul - is there any way to do it without using Twisted,
> since I am not very familiar with it? (i.e. just using the os library)
> Thanks.
>
> Jean-Paul Calderone wrote:
>> On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote:
>> >Hello, I need to write a server progr
Thanks, Jean-Paul - is there any way to do it without using Twisted,
since I am not very familiar with it? (i.e. just using the os library)
Thanks.
Jean-Paul Calderone wrote:
> On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote:
> >Hello, I need to write a server program that performs the f
On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote:
>Hello, I need to write a server program that performs the following
>tasks:
>
>1) Listens on TCP port for a connection
>2) When client connects, launches application (for example, vi), then
>closes connection with client
>3) Goes b
Hello, I need to write a server program that performs the following
tasks:
1) Listens on TCP port for a connection
2) When client connects, launches application (for example, vi), then
closes connection with client
3) Goes back to listening on TCP port for an incoming connection
The