tractor/tractor/msg
Tyler Goodlet 7d19c58373 Slight `PldRx` rework to simplify
Namely renaming and tweaking the `MsgType` receiving methods,
- `.recv_msg()` from what was `.recv_msg_w_pld()` which both receives
  the IPC msg from the underlying `._rx_chan` and then decodes its
  payload with `.decode_pld()`; it now also log reports on the different
  "stage of SC dialog protocol" msg types via a `match/case`.
- a new `.recv_msg_nowait()` sync equivalent of ^ (*was*
  `.recv_pld_nowait()`) who's use was the source of a recently
  discovered bug where any final `Return.pld` is being
  consumed-n-discarded by by `MsgStream.aclose()` depending on
  ctx/stream teardown race conditions..

Also,
- remove all the "instance persistent" ipc-ctx attrs, specifically the
  optional `_ipc`, `_ctx` and the `.wraps_ipc()` cm, since none of them
  were ever really needed/used; all methods which require
  a `Context/MsgStream` are explicitly always passed.
- update a buncha typing namely to use the more generic-styled
  `PayloadT` over `Any` and obviously `MsgType[PayloadT]`.
2025-03-22 14:36:12 -04:00
..
__init__.py Finally get type-extended `msgspec` fields workinn 2025-03-22 14:36:12 -04:00
_codec.py Tweak type-error messages for when `ext_types` is missing 2025-03-22 14:36:12 -04:00
_exts.py Offer a `mods: list` to `dec_type_union()`; drop importing this-mod 2025-03-22 14:36:12 -04:00
_ops.py Slight `PldRx` rework to simplify 2025-03-22 14:36:12 -04:00
pretty_struct.py Draft a (pretty)`Struct.fields_diff()` 2025-03-22 14:24:53 -04:00
ptr.py `NamespacePath._mk_fqnp()` handle `__mod__` for methods 2025-03-21 15:25:41 -04:00
types.py Finally get type-extended `msgspec` fields workinn 2025-03-22 14:36:12 -04:00