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.

Author sbt
Recipients Olivier.Grisel, mrjbq7, neologix, pitrou, sbt
Date 2013-08-19.18:53:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376938423.42.0.935004786492.issue17560@psf.upfronthosting.co.za>
In-reply-to
Content
> I could submit the part that makes it possible to customize the picklers 
> of multiprocessing.pool.Pool instance to the standard library if people 
> are interested.

2.7 and 3.3 are in bugfix mode now, so they will not change.

In 3.3 you can do

    from multiprocessing.forking import ForkingPickler
    ForkingPickler.register(MyType, reduce_MyType)

Is this sufficient for you needs?  This is private (and its definition has moved in 3.4) but it could be made public.
History
Date User Action Args
2013-08-19 18:53:43sbtsetrecipients: + sbt, pitrou, mrjbq7, neologix, Olivier.Grisel
2013-08-19 18:53:43sbtsetmessageid: <1376938423.42.0.935004786492.issue17560@psf.upfronthosting.co.za>
2013-08-19 18:53:43sbtlinkissue17560 messages
2013-08-19 18:53:43sbtcreate