Florent Xicluna <florent.xicl...@gmail.com> added the comment:

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])

----------
components: +Library (Lib) -None
nosy: +flox
versions: +Python 3.2, Python 3.3

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13139>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to