We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018307f commit 58bbd08Copy full SHA for 58bbd08
1 file changed
test/test_timestamp.py
@@ -179,5 +179,6 @@ def test_pack_datetime_without_tzinfo():
179
180
181
def test_too_large_timestamp():
182
- # timestamp64 format が大きすぎるとき、int64 ->int32 変換でdatetime型への変換が失敗する。
+ # When timestamp64 is too large, conversion to datetime fails due to int64 -> int32 conversion.
183
+ # https://github.com/msgpack/msgpack-python/issues/696
184
print(msgpack.unpackb(b"\xd7\xff" + b"\x00" * 8, timestamp=3))
0 commit comments