[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset f3977f34cf6c by Antoine Pitrou in branch '3.4': Issue #22903: The fake test case created by unittest.loader when it fails importing a test module is now picklable. https://hg.python.org/cpython/rev/f3977f34cf6c New changeset a1b5ac563d8d by Antoine

[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Robert Collins
Robert Collins added the comment: LGTM please commit. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: classname is not used in _make_failed_test(). -- nosy: +serhiy.storchaka ___ Python tracker ___ __

[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- keywords: +patch Added file: http://bugs.python.org/file38548/pickle_module_import_failure.patch ___ Python tracker ___

[issue22903] unittest creates non-picklable errors

2015-03-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue22903] unittest creates non-picklable errors

2014-11-19 Thread R. David Murray
R. David Murray added the comment: They aren't "real" exceptions, though, if I understand correctly. -- nosy: +r.david.murray ___ Python tracker ___ _

[issue22903] unittest creates non-picklable errors

2014-11-19 Thread Ethan Furman
Changes by Ethan Furman : -- nosy: +ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue22903] unittest creates non-picklable errors

2014-11-19 Thread Antoine Pitrou
New submission from Antoine Pitrou: Just got this: _pickle.PicklingError: Can't pickle : attribute lookup ModuleImportFailure on unittest.loader failed unittest should use regular exception classes instead. -- messages: 231398 nosy: ezio.melotti, michael.foord, pitrou, rbcollins prior