[issue4311] Race condition on Multiprocessing module documentation

2008-11-12 Thread Alejandro
New submission from Alejandro [EMAIL PROTECTED]: The devel documentation of the Multiprocessing module at the Exchanging objects between processes section has the following example snippet: from multiprocessing import Process, Queue def f(q): q.put([42, None, 'hello']) if __name__ ==

[issue4311] Race condition on Multiprocessing module documentation

2008-11-12 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Why? The q.get() will block until an item is put on it. -- nosy: +benjamin.peterson ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4311 ___

[issue4311] Race condition on Multiprocessing module documentation

2008-11-12 Thread Alejandro
Alejandro [EMAIL PROTECTED] added the comment: Ups. My mistake. Sorry ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4311 ___ ___ Python-bugs-list mailing list

[issue4311] Race condition on Multiprocessing module documentation

2008-11-12 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- resolution: - invalid status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4311 ___