[issue14335] Reimplement multiprocessing's ForkingPickler using dispatch_table

2012-03-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for this! Committed now. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue14335] Reimplement multiprocessing's ForkingPickler using dispatch_table

2012-03-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset b2a8310de718 by Antoine Pitrou in branch 'default': Issue #14335: multiprocessing's custom Pickler subclass now inherits from the C-accelerated implementation. http://hg.python.org/cpython/rev/b2a8310de718 -- nosy: +python-dev ___

[issue14335] Reimplement multiprocessing's ForkingPickler using dispatch_table

2012-03-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +alexandre.vassalotti, jnoller, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue14335] Reimplement multiprocessing's ForkingPickler using dispatch_table

2012-03-16 Thread sbt
New submission from sbt : The attached patch reimplements ForkingPickler using the new dispatch_table attribute. This allows ForkingPickler to subclass Pickler (implemented in C) instead of _Pickler (implemented in Python). -- components: Library (Lib) files: mp_forking_pickler.patch