You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -339,7 +339,7 @@ If a non-byte-string argument is passed to `umsgpack.unpackb()`, it will raise a
339
339
340
340
*`UnhashableKeyException`: Unhashable key encountered during map unpacking. The packed map cannot be unpacked into a Python dictionary.
341
341
342
-
Python dictionaries only support keys that are instances of `collections.Hashable`, so while the map`{ { u'abc': True } : 5 }` has a MessagePack encoding, it cannot be unpacked into a valid Python dictionary.
342
+
Python dictionaries only support keys that are instances of `collections.Hashable`, so while the map`{ { u'abc': True } : 5 }` has a MessagePack serialization, it cannot be unpacked into a valid Python dictionary.
343
343
344
344
``` python
345
345
# Attempt to unpack { {} : False }
@@ -351,7 +351,7 @@ If a non-byte-string argument is passed to `umsgpack.unpackb()`, it will raise a
351
351
352
352
*`DuplicateKeyException`: Duplicate key encountered during map unpacking.
353
353
354
-
Python dictionaries do not support duplicate keys, but MessagePack maps may be encodedwith duplicate keys.
354
+
Python dictionaries do not support duplicate keys, but MessagePack maps may be serializedwith duplicate keys.
0 commit comments