commit | 269b83bc05452f4f54fa9df5a76608f88da544fe | [log] [tgz] |
---|---|---|
author | Skip Montanaro <skip@pobox.com> | Tue Feb 06 01:07:02 2001 +0000 |
committer | Skip Montanaro <skip@pobox.com> | Tue Feb 06 01:07:02 2001 +0000 |
tree | 3463eb160b6a7a04a8a1a9aebc79075d9390f91e | |
parent | 46fa39ab1d1e2f14c1b44c5e81c34c5f6cfb9a58 [diff] [blame] |
added several more __all__ lists
diff --git a/Lib/mutex.py b/Lib/mutex.py index 2348a2e..33baea1 100644 --- a/Lib/mutex.py +++ b/Lib/mutex.py
@@ -12,6 +12,8 @@ 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."""