From b7f48e39c379e60473c220a586039aa56cea0b50 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 8 Oct 1996 14:06:17 +0000 Subject: Change to always call list.append with a single argument. --- Lib/mutex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/mutex.py') diff --git a/Lib/mutex.py b/Lib/mutex.py index b897863574..33509c762e 100644 --- a/Lib/mutex.py +++ b/Lib/mutex.py @@ -43,7 +43,7 @@ class mutex: if self.testandset(): function(argument) else: - self.queue.append(function, argument) + self.queue.append((function, argument)) # # Unlock a mutex. If the queue is not empty, call the next # function with its argument. -- cgit v1.2.1