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 fmitha
Recipients fmitha
Date 2012-01-11.07:50:11
SpamBayes Score 3.546925e-05
Marked as misclassified No
Message-id <1326268212.81.0.448148296094.issue13760@psf.upfronthosting.co.za>
In-reply-to
Content
I have not experienced this myself, but see
http://stackoverflow.com/questions/2246384/multiprocessing-pool-hangs-when-there-is-a-exception-in-any-of-the-thread

This appears to be another case of http://bugs.python.org/issue1692335

I also recently reported a similar problem at http://bugs.python.org/issue13751

Looking at the code for `NoOptionError` (see below) in 2.6 at least it would indeed be subject to the same problem. Perhaps some attention could be paid to 
resolving 1692335, which would presumably make this vexing problem go away?

class NoOptionError(Error):
    """A requested option was not found."""

    def __init__(self, option, section):
        Error.__init__(self, "No option %r in section: %r" %
                       (option, section))
        self.option = option
        self.section = section
History
Date User Action Args
2012-01-11 07:50:12fmithasetrecipients: + fmitha
2012-01-11 07:50:12fmithasetmessageid: <1326268212.81.0.448148296094.issue13760@psf.upfronthosting.co.za>
2012-01-11 07:50:12fmithalinkissue13760 messages
2012-01-11 07:50:11fmithacreate