Re: Multiple Telnet sessions through one script

2006-08-01 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Carl J. Van Arsdall <[EMAIL PROTECTED]> wrote: >Well, although you spawn seperate telnet processes there is still only >one thread of control in your pythons script. If you need to do two >things simultaneously you'll need to setup a parallel control >mechanism.

Re: Multiple Telnet sessions through one script

2006-07-31 Thread Carl J. Van Arsdall
Well, although you spawn seperate telnet processes there is still only one thread of control in your pythons script. If you need to do two things simultaneously you'll need to setup a parallel control mechanism. For example you could use python threads, each thread spawns a separate telnet an