[issue3431] multiprocessing uses Pickler.dispatch which isn't in 3.0 _pickle

2008-07-23 Thread Alexandre Vassalotti
Alexandre Vassalotti <[EMAIL PROTECTED]> added the comment: Duplicate of issue3385 -- resolution: -> duplicate status: open -> closed superseder: -> cPickle to pickle conversion in py3k missing methods ___ Python tracker <[EMAIL PROTECTED]>

[issue3431] multiprocessing uses Pickler.dispatch which isn't in 3.0 _pickle

2008-07-23 Thread Georg Brandl
New submission from Georg Brandl <[EMAIL PROTECTED]>: 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. -- assignee: jnoller components: Library (Lib) mes