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 flox
Recipients daniel.wagner-hall, flox
Date 2011-10-09.20:58:32
SpamBayes Score 6.958881e-05
Marked as misclassified No
Message-id <1318193913.31.0.675721368875.issue13139@psf.upfronthosting.co.za>
In-reply-to
Content
Same behavior on Python 3.2 with this code:


from multiprocessing import Pool
from time import sleep

def Process(x):
    try:
        print(x)
        sleep(.6-x/10.)
        raise Exception('Exception: %d' % x)
    finally:
        print('Finally: %d' % x)

Pool(3).map(Process, [1, 2, 3])
History
Date User Action Args
2011-10-09 20:58:33floxsetrecipients: + flox, daniel.wagner-hall
2011-10-09 20:58:33floxsetmessageid: <1318193913.31.0.675721368875.issue13139@psf.upfronthosting.co.za>
2011-10-09 20:58:32floxlinkissue13139 messages
2011-10-09 20:58:32floxcreate