dump a multi dimensional dictionary

Steven D'Aprano steve+comp.lang.python at pearwood.info
Fri Jul 26 22:54:28 EDT 2013


On Fri, 26 Jul 2013 13:21:47 -0700, cerr wrote:

> or should I just write my own dump function that can hanle thiS?
> 
> Please advise!

Given the choice between reading the documentation to pickle.dump:

help(pickle.dump)


or spending the next month writing a replacement for pickle, testing it, 
debugging it, going through revision after revision to try to bring it to 
the same level of maturity as pickle, which would you prefer? 

:-)


-- 
Steven



More information about the Python-list mailing list