[issue17836] multiprocessing exceptions with useful traceback

2013-04-25 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list maili

[issue17836] multiprocessing exceptions with useful traceback

2013-04-25 Thread Richard Oudkerk
Richard Oudkerk added the comment: Duplicate of #13831. -- resolution: -> duplicate ___ Python tracker ___ ___ Python-bugs-list maili

[issue17836] multiprocessing exceptions with useful traceback

2013-04-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17836] multiprocessing exceptions with useful traceback

2013-04-24 Thread Ned Deily
Ned Deily added the comment: (FYI, cpython source is no longer maintained in svn.python.org; the browser link you provided is out-of-date. Current source for the 2.7 branch can be viewed here: http://hg.python.org/cpython/file/2.7/) -- nosy: +ned.deily, sbt versions: +Python 3.4 -Pyth

[issue17836] multiprocessing exceptions with useful traceback

2013-04-24 Thread Andres Riancho
New submission from Andres Riancho: In pool.py, the worker function reads as follows: http://svn.python.org/view/python/trunk/Lib/multiprocessing/pool.py?view=markup """ 68 job, i, func, args, kwds = task 69 try: 70 result = (True, func(*args, **kwds))