This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Don't pickle TestCase instances in test_multiprocessing
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asksol, jnoller, michael.foord, pitrou
Priority: normal Keywords: patch

Created on 2010-10-22 22:36 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tmp.patch pitrou, 2010-10-22 22:36
Messages (2)
msg119407 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-10-22 22:36
unittest.TestCase instances aren't supposed to be picklable, but test_multiprocessing does it anyway (under Windows). Here is a patch.
msg120293 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-11-02 23:53
Committed in r86130 (3.2), r86131 (2.7) and r86132 (3.1).
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54382
2010-11-02 23:53:06pitrousetstatus: open -> closed
resolution: fixed
messages: + msg120293

stage: patch review -> resolved
2010-10-23 18:10:51pitroulinkissue10180 dependencies
2010-10-22 22:41:42pitrousetnosy: + michael.foord
2010-10-22 22:36:30pitroucreate