[issue10173] Don't pickle TestCase instances in test_multiprocessing

2010-11-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r86130 (3.2), r86131 (2.7) and r86132 (3.1). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue10173] Don't pickle TestCase instances in test_multiprocessing

2010-10-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue10173] Don't pickle TestCase instances in test_multiprocessing

2010-10-22 Thread Antoine Pitrou
New submission from Antoine Pitrou : unittest.TestCase instances aren't supposed to be picklable, but test_multiprocessing does it anyway (under Windows). Here is a patch. -- components: Tests files: tmp.patch keywords: patch messages: 119407 nosy: asksol, jnoller, pitrou priority: norm