Passing a callable object to Thread

2008-02-15 Thread skawaii
erent signature (i.e. *args, **kwargs) in order for this to work? Thanks, skawaii -- http://mail.python.org/mailman/listinfo/python-list

Re: Passing a callable object to Thread

2008-02-15 Thread skawaii
On Feb 15, 7:23 pm, Paul Rubin wrote: > t = th.Thread(target=tribalwars.populate_all_tribes, args=("data/w7/",)) Thanks, that did it. After playing around in the interpreter a bit, I realize now that args=("data/w7/") doesn't create a tuple, like I thought it would. I h