diff options
Diffstat (limited to 'Lib/mutex.py')
-rw-r--r-- | Lib/mutex.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/mutex.py b/Lib/mutex.py index 33baea1..2348a2e 100644 --- a/Lib/mutex.py +++ b/Lib/mutex.py @@ -12,8 +12,6 @@ Of course, no multi-threading is implied -- hence the funny interface for lock, where a function is called once the lock is aquired. """ -__all__ = ["mutex"] - class mutex: def __init__(self): """Create a new mutex -- initially unlocked.""" |