[issue4450] 2to3 run changed multiprocessing.Queue() to multiprocessing.queue()

2008-11-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: 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. -- resolution: -> fixed status: open -> closed

[issue4450] 2to3 run changed multiprocessing.Queue() to multiprocessing.queue()

2008-11-28 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Hmm, we should actually rename mp.Queue to mp.queue at one point -- nosy: +jnoller ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue4450] 2to3 run changed multiprocessing.Queue() to multiprocessing.queue()

2008-11-28 Thread Christian Heimes
New submission from Christian Heimes <[EMAIL PROTECTED]>: I've fixed the multiprocessing examples in r67417. 2to3 altered multiprocessing.Queue() to multiprocessing.queue(). -- assignee: benjamin.peterson components: 2to3 (2.x to 3.0 conversion tool) messages: 76527 nosy: benjamin.peters