Re: telnetlib thread-safe?

2006-08-25 Thread Jerry
Great, thanks for the info. -- http://mail.python.org/mailman/listinfo/python-list

Re: telnetlib thread-safe?

2006-08-24 Thread Fredrik Lundh
Jerry wrote: >> define thread-safe. how do you plan to use it? > > I would like to write a program that spawns ~10 threads. Each thread > would get a host to connect to from a Queue object and run then do it's > thing (i.e. connecting to the host, running some commands, returning > back a succe

Re: telnetlib thread-safe?

2006-08-24 Thread Diez B. Roggisch
Jerry schrieb: > Fredrik Lundh wrote: >> define thread-safe. how do you plan to use it? > > I would like to write a program that spawns ~10 threads. Each thread > would get a host to connect to from a Queue object and run then do it's > thing (i.e. connecting to the host, running some commands,

Re: telnetlib thread-safe?

2006-08-24 Thread Jerry
Fredrik Lundh wrote: > define thread-safe. how do you plan to use it? I would like to write a program that spawns ~10 threads. Each thread would get a host to connect to from a Queue object and run then do it's thing (i.e. connecting to the host, running some commands, returning back a success o

Re: telnetlib thread-safe?

2006-08-24 Thread Fredrik Lundh
Jerry wrote: > Can anyone tell me if the telnetlib module is thread-safe? define thread-safe. how do you plan to use it? -- http://mail.python.org/mailman/listinfo/python-list

telnetlib thread-safe?

2006-08-24 Thread Jerry
Can anyone tell me if the telnetlib module is thread-safe? I've done some looking, but don't know, and I don't know how to tell from reading the module code. -- http://mail.python.org/mailman/listinfo/python-list