msgpack-node icon indicating copy to clipboard operation
msgpack-node copied to clipboard

Error de-serializing object

Open hden opened this issue 11 years ago • 0 comments

Error while de-serialising the following package:

'\x85\xa8Coalesce\xc3\xa5Event\xa4user\xa5LTime\xcc\x01\xa4Name\xa4test\xa7Payload\xc4\x03foo'

It should be decoded to the following object:

>>> import msgpack
>>> p = '\x85\xa8Coalesce\xc3\xa5Event\xa4user\xa5LTime\xcc\x01\xa4Name\xa4test\xa7Payload\xc4\x03foo'
>>> msgpack.loads(p)
{'Coalesce': True, 'LTime': 1, 'Payload': 'foo', 'Event': 'user', 'Name': 'test'}

hden avatar Dec 18 '13 00:12 hden