classification
Title: multiprocessing uses Pickler.dispatch which isn't in 3.0 _pickle
Type: Stage:
Components: Library (Lib) Versions: Python 3.1, Python 3.0
process
Status: closed Resolution: duplicate
Dependencies: Superseder: cPickle to pickle conversion in py3k missing methods
View: 3385
Assigned To: jnoller Nosy List: alexandre.vassalotti, georg.brandl, jnoller (3)
Priority: Keywords

Created on 2008-07-23 15:48 by georg.brandl, last changed 2008-07-23 23:46 by alexandre.vassalotti.

Messages (2)
msg70176 - (view) Author: Georg Brandl (georg.brandl) Date: 2008-07-23 15:48
multiprocessing's new ForkingPickler uses Pickler's dispatch attribute
which is only present in the Python version, not the C one. As a result,
a straightforward merge isn't possible.
msg70184 - (view) Author: Alexandre Vassalotti (alexandre.vassalotti) Date: 2008-07-23 23:46
Duplicate of issue3385
History
Date User Action Args
2008-07-23 23:46:39alexandre.vassalottisetstatus: open -> closed
resolution: duplicate
superseder: cPickle to pickle conversion in py3k missing methods
messages: + msg70184
2008-07-23 15:48:17georg.brandlcreate