[issue11161] futures.ProcessPoolExecutor hangs

2013-10-26 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> committed/rejected versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-l

[issue11161] futures.ProcessPoolExecutor hangs

2013-10-25 Thread Brian Quinlan
Changes by Brian Quinlan : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11161] futures.ProcessPoolExecutor hangs

2013-10-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 44b69e95d276 by bquinlan in branch 'default': Issue #11161: Update the documentation for ProcessPoolExecutor to note that it will not work in the interactive shell. http://hg.python.org/cpython/rev/44b69e95d276 -- nosy: +python-dev ___

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread Brian Quinlan
Brian Quinlan added the comment: ProcessPoolExecutor is not expected to work with any interactive shell on Windows because it uses the multiprocessing module behind the scenes, which has that limitation. I'm reclassifying this as a documentation bug since either a reference to http://docs.py

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> bquinlan nosy: +bquinlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread paul clinch
New submission from paul clinch : The example ``16.4.3.1. ProcessPoolExecutor Example`` hangs in IDLE silently, and hangs the interactive python shell with ``AttributeError: 'module' object has no attribute 'is_prime'``. is_prime(9) was tested before running. Platform is windows XP. ``c:\Py