diff options
Diffstat (limited to 'Lib/mutex.py')
-rw-r--r-- | Lib/mutex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mutex.py b/Lib/mutex.py index c939b1a..374f457 100644 --- a/Lib/mutex.py +++ b/Lib/mutex.py @@ -40,7 +40,7 @@ class mutex: # If the mutex is already locked, place function and argument # in the queue. # - def lock(self, (function, argument)): + def lock(self, function, argument): if self.testandset(): function(argument) else: |