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: use of cPickle in multiprocessing
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: jnoller, mishok13, roudkerk
Priority: normal Keywords: patch

Created on 2008-07-09 12:01 by mishok13, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue3325.diff mishok13, 2008-07-09 12:05
Messages (3)
msg69463 - (view) Author: Andrii V. Mishkovskyi (mishok13) Date: 2008-07-09 12:01
There are two places in multiprocessing where cPickle (gone from py3k
already) is used.
Both of them are in try .. except, so they don't break code.
Here is a patch that removes these uses.
msg69464 - (view) Author: Andrii V. Mishkovskyi (mishok13) Date: 2008-07-09 12:05
And here is the patch.
msg80117 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-18 19:45
Checked into python-3000 as r68728
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47575
2009-01-18 19:46:00jnollersetstatus: open -> closed
resolution: fixed
messages: + msg80117
2009-01-08 21:25:28jnollersetassignee: jnoller
2008-07-09 12:05:27mishok13setfiles: + issue3325.diff
keywords: + patch
messages: + msg69464
2008-07-09 12:01:23mishok13create