Skip Menu |

This queue is for tickets about the Python-Serialise-Pickle CPAN distribution.

Report information
The Basics
Id: 105465
Status: new
Priority: 0/
Queue: Python-Serialise-Pickle

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.01
Fixed in: (no value)



Subject: Allow dumping to strings
Currently it seems that it's only possible to dump pickles to files. It would be nice if it was also possible to dump pickles to a string. Maybe the implementation is not too hard: just have another constructor which gets a scalar reference and is using something like 'open my $fh, ">", \$scalar;'. Starting from this point both code paths would be the same. The same should probably also be possible for deserializing pickles.