summaryrefslogtreecommitdiff
path: root/Lib/Queue.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-18 03:30:53 +0000
committerSkip Montanaro <skip@pobox.com>2001-02-18 03:30:53 +0000
commit09c1d1d3ff5871fc5a3a4dc92f2282b1c98fa840 (patch)
treec76a151e885de5c853a6ffded2a36496a35bd2eb /Lib/Queue.py
parent2fa776bb1580cf5a8dcc34036ed91177f567c163 (diff)
downloadcpython-09c1d1d3ff5871fc5a3a4dc92f2282b1c98fa840.tar.gz
removed __all__ from several modules
Diffstat (limited to 'Lib/Queue.py')
-rw-r--r--Lib/Queue.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/Queue.py b/Lib/Queue.py
index 050a966040..0e6bbf055a 100644
--- a/Lib/Queue.py
+++ b/Lib/Queue.py
@@ -1,7 +1,5 @@
"""A multi-producer, multi-consumer queue."""
-__all__ = ["Queue","Empty","Full"]
-
class Empty(Exception):
"Exception raised by Queue.get(block=0)/get_nowait()."
pass