summaryrefslogtreecommitdiffstats
path: root/Lib/mutex.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-18 03:30:53 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-02-18 03:30:53 (GMT)
commit78349072f7c8f2d3da6f552665f9f381930c3c42 (patch)
tree94ed5548052b1901079e58c5e0d13e9ec2e4b603 /Lib/mutex.py
parent1ca2ed35e09f7531dbd58c021f60e2ee58774e41 (diff)
downloadcpython-78349072f7c8f2d3da6f552665f9f381930c3c42.zip
cpython-78349072f7c8f2d3da6f552665f9f381930c3c42.tar.gz
cpython-78349072f7c8f2d3da6f552665f9f381930c3c42.tar.bz2
removed __all__ from several modules
Diffstat (limited to 'Lib/mutex.py')
-rw-r--r--Lib/mutex.py2
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."""