[issue3273] multiprocessing and meaningful errors

2009-01-22 Thread Jesse Noller
Jesse Noller added the comment: I am going to track this as part of issue 5001 -- resolution: -> duplicate status: open -> closed superseder: -> Remove assertion-based checking in multiprocessing ___ Python tracker

[issue3273] multiprocessing and meaningful errors

2009-01-22 Thread Jesse Noller
Changes by Jesse Noller : -- priority: -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3273] multiprocessing and meaningful errors

2009-01-19 Thread Jesse Noller
Changes by Jesse Noller : -- assignee: -> jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue3273] multiprocessing and meaningful errors

2008-07-03 Thread Andrii V. Mishkovskyi
New submission from Andrii V. Mishkovskyi <[EMAIL PROTECTED]>: multiprocessing uses a lot of `assert` statements all over the code. I propose to change this way to a more readable and understandable. For example: Lib/multiprocessing/managers.py, line 136: assert isinstance(authkey, bytes) >From m