From: Jesse Noller Date: Tue, 31 Mar 2009 03:31:16 +0000 (+0000) Subject: add JoinableQueue to __all__ X-Git-Tag: v2.7a1~1716 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2898e0acb7c40c8e77f0210d564eefa4779f24a;p=python add JoinableQueue to __all__ --- diff --git a/Lib/multiprocessing/queues.py b/Lib/multiprocessing/queues.py index bfb5f09e11..fa8a13a8c7 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