In article <[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]> wrote:
.
.
.
>You can also use threads, which is a little bit more portable than
>using Python's fork methodology, or so I've read. The concepts on this
>page can be applied
Don,
On Sep 11, 10:54 pm, Don Hanlen <[EMAIL PROTECTED]> wrote:
> I'm writing a simple GUI that:
> ..gets info via telnet protocol (and sends)
> ..gets info via http (and sends)
> ..gets user-info from (currently)
> ...Tkinter Text windoze
> ...Tkinter buttons and such
On Sep 11, 11:54 pm, Don Hanlen <[EMAIL PROTECTED]> wrote:
> I could solve my problems with the following psuedo-code made into
> real code:
>
> import blah
>
> t = blah.fork(runthisprogram.py)
>
> #OK still in main
> t.sendinfo(info)
> info = t.receiveinfo()
>
> #