[issue3273] multiprocessing and meaningful errors

2009-01-22 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: -- priority: - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3273 ___ ___ Python-bugs-list mailing

[issue3273] multiprocessing and meaningful errors

2009-01-22 Thread Jesse Noller
Jesse Noller jnol...@gmail.com 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-19 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: -- assignee: - jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3273 ___ ___ Python-bugs-list

[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 my