This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: multiprocessing queues.py doesn't include JoinableQueue in its __all__ list
Type: enhancement Stage:
Components: Documentation, Library (Lib) Versions: Python 3.0, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: jnoller, mallyvai
Priority: normal Keywords:

Created on 2009-03-26 20:27 by mallyvai, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg84212 - (view) Author: Vaibhav Mallya (mallyvai) Date: 2009-03-26 20:27
Should __all__ = ['Queue', 'SimpleQueue'] in queues.py have
JoinableQueue as part of the list as well? 

Also, multiprocessing's __init__.py does not appear to have SimpleQueue
as part of its __all__ - is this expected?

SimpleQueue does not appear in the multiprocessing docs; is it meant to
be avoided by user code then?
msg84745 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-03-31 03:32
r70792 on trunk
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49824
2009-03-31 03:32:43jnollersetstatus: open -> closed
resolution: fixed
messages: + msg84745
2009-03-29 14:35:42jnollersetpriority: normal
2009-03-26 20:28:33jnollersetassignee: georg.brandl -> jnoller

nosy: - georg.brandl
2009-03-26 20:27:26mallyvaicreate