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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -400,7 +400,7 @@ If a non-byte-string argument is passed to `umsgpack.unpackb()`, it will raise a
400
400
* Python tuples and lists are both packed into the msgpack array format
401
401
* Python float types are packed into the msgpack float32 or float64 format depending on the system's `sys.float_info`
402
402
* The Python `datetime.datetime`typeis packed into, and unpacked from, the msgpack `timestamp`format
403
-
* Note that this Python type only supports microsecond resolution, while the msgpack `timestamp`format supports nanosecond resolution. Timestamps with finer than microsecond resolution will lose precision during unpacking.
403
+
* Note that this Python type only supports microsecond resolution, while the msgpack `timestamp`format supports nanosecond resolution. Timestamps with finer than microsecond resolution will lose precision during unpacking. Users may override the packing and unpacking of the msgpack `timestamp`formatwith a custom typefor alternate behavior.
0 commit comments