From 3ac5b00d4091e2c06bafe5fc5fb18798d3fa701b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 16 May 1994 09:26:24 +0000 Subject: [PATCH] Fixed for stricter argument matching rules --- Demo/threads/find.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Demo/threads/find.py b/Demo/threads/find.py index 3bc54feba0a..940360abdff 100644 --- a/Demo/threads/find.py +++ b/Demo/threads/find.py @@ -46,9 +46,8 @@ def __init__(self): 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()