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.

Author i000
Recipients grahamd, i000, jnoller
Date 2009-04-16.12:11:16
SpamBayes Score 7.026493e-06
Marked as misclassified No
Message-id <1239883879.36.0.553001184918.issue5313@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

I believe I am the edge-case. I've written a minimalist python
Tkinter-shell around Tkinter.Text and code.InteractiveConsole by
hi-jacking stdin, stdout and stderr. It "hangs" when using
multiprocessing pool.

to reproduce run papy_gui.py
and type:
>>> from math import sqrt
>>> from multiprocessing import Pool
>>> p = Pool()
>>> print p
<multiprocessing.pool.Pool object at 0xb723738c>
>>> p.map(sqrt, [1,2,3])
<<no more output ever>>
History
Date User Action Args
2009-04-16 12:11:19i000setrecipients: + i000, jnoller, grahamd
2009-04-16 12:11:19i000setmessageid: <1239883879.36.0.553001184918.issue5313@psf.upfronthosting.co.za>
2009-04-16 12:11:18i000linkissue5313 messages
2009-04-16 12:11:18i000create