I am using Eclipse and getting this error:
q = queue.Queue(maxsize=0) NameError: global name 'queue' is not defined
I've checked the documentations and appears that is how its supposed to be placed. Am I missing something here? Thanks for all help.
from queue import *
def worker():
    while True:
        item = q.get()
        do_work(item)
        q.task_done()
def main():
    q = queue.Queue(maxsize=0)
    for i in range(num_worker_threads):
         t = Thread(target=worker)
         t.daemon = True
         t.start()
    for item in source():
        q.put(item)
    q.join()       # block until all tasks are done
main()
Using: Eclipse SDK and Python 3.x