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: 2to3 run changed multiprocessing.Queue() to multiprocessing.queue()
Type: Stage: needs patch
Components: 2to3 (2.x to 3.x conversion tool) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: benjamin.peterson Nosy List: benjamin.peterson, christian.heimes, jnoller
Priority: high Keywords:

Created on 2008-11-28 11:28 by christian.heimes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg76527 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-11-28 11:28
I've fixed the multiprocessing examples in r67417. 2to3 altered
multiprocessing.Queue() to multiprocessing.queue().
msg76543 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2008-11-28 17:59
Hmm, we should actually rename mp.Queue to mp.queue at one point
msg76559 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-11-28 22:01
Fixed in r67426.

One result of this fix is that attribute usage of modules is not
replaced. (ie. getattr(somemodule, "attr") isn't changed.) This is
probably isn't a problem, though.
History
Date User Action Args
2022-04-11 14:56:41adminsetgithub: 48700
2008-11-28 22:01:59benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg76559
2008-11-28 17:59:48jnollersetnosy: + jnoller
messages: + msg76543
2008-11-28 11:28:19christian.heimescreate