On Sun, Aug 12, 2012 at 8:46 AM, eryksun <eryk...@gmail.com> wrote:
>
> t = threading.Thread(target=factorsOfInteger, args=(n, qin, qout)).start()

Sorry I need to proofread better. That should be the following:

t = threading.Thread(target=factorsOfInteger, args=(n, qin, qout))
t.start()
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to