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 loewis
Recipients RonnyPfannschmidt, alexandre.vassalotti, gvanrossum, loewis, pitrou
Date 2009-08-27.21:08:01
SpamBayes Score 0.001953889
Marked as misclassified No
Message-id <4A96F5AF.3010806@v.loewis.de>
In-reply-to <1251400515.75.0.651565476439.issue6784@psf.upfronthosting.co.za>
Content
> how about a way to declare one wants exact 1:1 mapping between py2<>py3,
> so str<>bytes and unicode<>str will work for sure

In a sense, that's already possible. Inherit from _Pickler/_Unpickler,
and replace the dispatch dict with a different mapping.

I wouldn't object to supporting this with an option, though, assuming it
was properly documented and implemented for both pickle and _pickle
(probably along with pickletools).
History
Date User Action Args
2009-08-27 21:08:03loewissetrecipients: + loewis, gvanrossum, pitrou, alexandre.vassalotti, RonnyPfannschmidt
2009-08-27 21:08:01loewislinkissue6784 messages
2009-08-27 21:08:01loewiscreate