diff options
author | Jesse Noller <jnoller@gmail.com> | 2009-03-31 03:31:16 (GMT) |
---|---|---|
committer | Jesse Noller <jnoller@gmail.com> | 2009-03-31 03:31:16 (GMT) |
commit | b2898e0acb7c40c8e77f0210d564eefa4779f24a (patch) | |
tree | 3b054f2963651e40851ade4d6ad770c737bc6db6 /Lib/multiprocessing/queues.py | |
parent | 42827e91eedfed3c4c5a35c51f93cd9f41ccbad4 (diff) | |
download | cpython-b2898e0acb7c40c8e77f0210d564eefa4779f24a.zip cpython-b2898e0acb7c40c8e77f0210d564eefa4779f24a.tar.gz cpython-b2898e0acb7c40c8e77f0210d564eefa4779f24a.tar.bz2 |
add JoinableQueue to __all__
Diffstat (limited to 'Lib/multiprocessing/queues.py')
-rw-r--r-- | Lib/multiprocessing/queues.py | 2 |
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 |