""" ################################################################## a reusable form class, used by getfilegui (and others) ###############################...
from threading import Thread, Event from queue import Queue import time import random class producer(Thread): def init(self, queue): Thread.init(self) se...