[issue11161] futures.ProcessPoolExecutor hangs

2013-10-26 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- stage: - committed/rejected versions: +Python 3.4 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11161 ___

[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

2013-10-25 Thread Brian Quinlan
Changes by Brian Quinlan br...@sweetapp.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11161 ___

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread paul clinch
New submission from paul clinch pcli...@internet-glue.co.uk: 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.

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- assignee: - bquinlan nosy: +bquinlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11161 ___ ___

[issue11161] futures.ProcessPoolExecutor hangs

2011-02-09 Thread Brian Quinlan
Brian Quinlan br...@sweetapp.com 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