Summary
ObjectDoesNotExist.__init__ and MultipleObjectsReturned.__init__ gained typed keyword-only parameters in v0.62.0. A subclass that forwards **kwargs to super().__init__ — the ordinary way to extend an exception — no longer type-checks, because mypy validates the unpacked mapping against every declared keyword parameter. Runtime behavior is unaffected; only type-checking fails.
tmuxp hits this in tmuxp/exc.py. It is currently pinned to libtmux 0.61.0, so the failure appears the moment that pin moves.
Reproduction
from libtmux.exc import ObjectDoesNotExist
class SessionMissing(ObjectDoesNotExist):
def __init__(self, *args: object, **kwargs: object) -> None:
super().__init__("no session", *args, **kwargs)
Expected
Type-checks. The call is correct at runtime, and forwarding **kwargs is the conventional way to subclass an exception.
Actual
error: Argument 3 to "__init__" of "ObjectDoesNotExist" has incompatible type "**dict[str, object]"; expected "Mapping[str, Any] | None" [arg-type]
Widening the subclass to **kwargs: t.Any silences it, but that is a downstream workaround for an upstream signature change, and it gives up the subclass's own annotation.
Environment
Details
libtmux 0.62.0
mypy 2.3.0
Python 3.14.6
Evidence
Details
Against tmuxp's checkout, changing only the installed libtmux:
$ uv pip install 'libtmux==0.61.0' && uv run mypy src
Success: no issues found in 41 source files
$ uv pip install 'libtmux==0.62.0' && uv run mypy src
src/tmuxp/exc.py:86: error: Argument 3 to "__init__" of "ObjectDoesNotExist" has incompatible type "**dict[str, object]"; expected "Mapping[str, Any] | None" [arg-type]
Found 1 error in 1 file (checked 41 source files)
Proposal
Two options, neither obviously right.
Accept a **kwargs catch-all upstream
Add **kwargs: t.Any to both __init__ signatures and raise TypeError for anything unrecognized, so a typo is still caught.
This was measured and does not fix the reported error: mypy still binds the unpacked mapping against query, so the catch-all changes nothing for the subclass. It also replaces CPython's own message — which suggests the intended keyword — with a hand-written one:
# CPython
TypeError: __init__() got an unexpected keyword argument 'qeury'. Did you mean 'query'?
# hand-written
TypeError: unexpected keyword argument: qeury
Recorded here so the next person does not re-derive it.
Document it as a deliberate tightening
Leave the signatures alone and add a MIGRATION note telling downstream subclasses to annotate **kwargs: t.Any. This keeps query and count statically checked for direct callers, which is what made them worth adding.
References
Summary
ObjectDoesNotExist.__init__andMultipleObjectsReturned.__init__gained typed keyword-only parameters in v0.62.0. A subclass that forwards**kwargstosuper().__init__— the ordinary way to extend an exception — no longer type-checks, because mypy validates the unpacked mapping against every declared keyword parameter. Runtime behavior is unaffected; only type-checking fails.tmuxp hits this in
tmuxp/exc.py. It is currently pinned to libtmux 0.61.0, so the failure appears the moment that pin moves.Reproduction
$ mypy repro.pyExpected
Type-checks. The call is correct at runtime, and forwarding
**kwargsis the conventional way to subclass an exception.Actual
Widening the subclass to
**kwargs: t.Anysilences it, but that is a downstream workaround for an upstream signature change, and it gives up the subclass's own annotation.Environment
Details
Evidence
Details
Against tmuxp's checkout, changing only the installed libtmux:
Proposal
Two options, neither obviously right.
Accept a
**kwargscatch-all upstreamAdd
**kwargs: t.Anyto both__init__signatures and raiseTypeErrorfor anything unrecognized, so a typo is still caught.This was measured and does not fix the reported error: mypy still binds the unpacked mapping against
query, so the catch-all changes nothing for the subclass. It also replaces CPython's own message — which suggests the intended keyword — with a hand-written one:Recorded here so the next person does not re-derive it.
Document it as a deliberate tightening
Leave the signatures alone and add a
MIGRATIONnote telling downstream subclasses to annotate**kwargs: t.Any. This keepsqueryandcountstatically checked for direct callers, which is what made them worth adding.References
ObjectDoesNotExistandMultipleObjectsReturnedinsrc/libtmux/exc.py