commit | b2898e0acb7c40c8e77f0210d564eefa4779f24a | [log] [tgz] |
---|---|---|
author | Jesse Noller <jnoller@gmail.com> | Tue Mar 31 03:31:16 2009 +0000 |
committer | Jesse Noller <jnoller@gmail.com> | Tue Mar 31 03:31:16 2009 +0000 |
tree | 3b054f2963651e40851ade4d6ad770c737bc6db6 | |
parent | 42827e91eedfed3c4c5a35c51f93cd9f41ccbad4 [diff] [blame] |
add JoinableQueue to __all__
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