commit | 3ac5b00d4091e2c06bafe5fc5fb18798d3fa701b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 16 09:26:24 1994 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 16 09:26:24 1994 +0000 |
tree | 63bc10dbb6df4b35ff7a66b199e84ed58063be84 | |
parent | 1d28e1707ab537289b6923b9b08482cf21b1d269 [diff] [blame] |
Fixed for stricter argument matching rules
diff --git a/Demo/threads/find.py b/Demo/threads/find.py index 3bc54fe..940360a 100644 --- a/Demo/threads/find.py +++ b/Demo/threads/find.py
@@ -46,9 +46,8 @@ self.work = [] self.busy = 0 - def addwork(self, job): - if not job: - raise TypeError, 'cannot add null job' + def addwork(self, func, args): + job = (func, args) self.mutex.acquire() self.work.append(job) self.mutex.release()