[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread david
david added the comment: Fair enough. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread Jesse Noller
Jesse Noller added the comment: I concur with RDM. We need complex data structures, and switching to JSON represents a non zero amount of work, isn't as fast and pickle works well. If you want to use JSON as a transport, I would do custom subclassing. -- _

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread david
david added the comment: Um ok. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mail

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread R. David Murray
R. David Murray added the comment: This would increase the overhead to no purpose, as far as I can see. Ask or Jesse can reopen this if they think it is worth considering. -- nosy: +asksol, jnoller, r.david.murray resolution: -> rejected status: open -> closed ___

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-03-01 Thread david
david added the comment: On 1 March 2011 18:01, Alex wrote: > > Alex added the comment: > > Why?  JSON is incapable of representing most Python datastructures that can > be pickled (i.e. anything that isn't a list, tuple, dict, int, or str). I would have suggested yaml (using safe_load() ) .

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-02-28 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Library (Lib) stage: -> needs patch type: -> feature request versions: +Python 3.3 ___ Python tracker ___

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-02-28 Thread Alex
Alex added the comment: Why? JSON is incapable of representing most Python datastructures that can be pickled (i.e. anything that isn't a list, tuple, dict, int, or str). -- nosy: +alex ___ Python tracker __

[issue11358] Please replace the use of pickle in multiprocessing with json.

2011-02-28 Thread david
New submission from david : Please replace the use of pickle in multiprocessing with json. -- messages: 129742 nosy: db priority: normal severity: normal status: open title: Please replace the use of pickle in multiprocessing with json. ___ Python tra