summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-31 03:35:12 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-31 03:35:12 (GMT)
commit61e9b35e910c57ebf1c3f30f5de05ff7fa327dab (patch)
treef8c7566e845d7766fb597ce9cbc92ecd3e5f0036
parentf0d21c751b306e3192ddc81dfd28e74b8816e57b (diff)
downloadcpython-61e9b35e910c57ebf1c3f30f5de05ff7fa327dab.zip
cpython-61e9b35e910c57ebf1c3f30f5de05ff7fa327dab.tar.gz
cpython-61e9b35e910c57ebf1c3f30f5de05ff7fa327dab.tar.bz2
merge 70792 to 26 maint
-rw-r--r--Lib/multiprocessing/queues.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/queues.py b/Lib/multiprocessing/queues.py
index bfb5f09..fa8a13a 100644
--- a/Lib/multiprocessing/queues.py
+++ b/Lib/multiprocessing/queues.py
@@ -6,7 +6,7 @@
# Copyright (c) 2006-2008, R Oudkerk --- see COPYING.txt
#
-__all__ = ['Queue', 'SimpleQueue']
+__all__ = ['Queue', 'SimpleQueue', 'JoinableQueue']
import sys
import os