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 pitrou
Recipients acdha, ezio.melotti, pitrou, r.david.murray, rhettinger
Date 2014-02-26.15:34:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393428883.31.0.573808844533.issue20774@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is that it would be deserialized as a list; this breaks the general expectation that serialization formats should round-trip.

(yes, tuple already does this; but I think it is less of a problem for tuples, since the list API is a superset of the tuple API except for hashing)

So, perhaps we could ship an optional serializer (under which form?) accepting any sequence type (and perhaps any mapping type?), but it shouldn't be the default.
History
Date User Action Args
2014-02-26 15:34:43pitrousetrecipients: + pitrou, rhettinger, ezio.melotti, r.david.murray, acdha
2014-02-26 15:34:43pitrousetmessageid: <1393428883.31.0.573808844533.issue20774@psf.upfronthosting.co.za>
2014-02-26 15:34:43pitroulinkissue20774 messages
2014-02-26 15:34:42pitroucreate