Add todo-note for non-strict `msgspec` decode-mode?
parent
2be3f93a8f
commit
15f58495d5
|
@ -259,8 +259,11 @@ def mk_dec(
|
||||||
|
|
||||||
return MsgDec(
|
return MsgDec(
|
||||||
_dec=msgpack.Decoder(
|
_dec=msgpack.Decoder(
|
||||||
type=spec, # like `MsgType[Any]`
|
type=spec,
|
||||||
dec_hook=dec_hook,
|
dec_hook=dec_hook,
|
||||||
|
# ?TODO, support it?
|
||||||
|
# https://jcristharif.com/msgspec/usage.html#strict-vs-lax-mode
|
||||||
|
# strict=False,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue