Sebastian Rittau
Sebastian Rittau
This is a pytype issue. Maybe @rchen152 has some insight.
One thing to try: As we are effectively "throwing away" the wrapper function's signature (except for the `__wrapped__` field) and replacing it by the wrapped function's, we could use a...
The PR certainly seems worthwhile and correct to me, but we still need pytype and mypy fixes for it to be viable. I suggest we keep it open as "deferred"...
The primer output is still a bit concerning, but I think mostly unavoidable with this PR. Any other opinions on that? I am removing the "deferred" label for now.
Cc @sobolevn as author of that comment.
It would be useful to run full tests at a regular interval, say once per day or week.
No, we still need to use separate venvs for each distribution, so that the dependencies don't interfere with each other.
@hmc-cs-mdrissi For now you could try to skip step 1 and we can see how that affects CI runtimes.
The "correct" way to do this is to add a your own protocol and constrain `V` to that: ```python class _SupportsSum(Protocol): def __add__(self, __x: Any) -> Any: ... V =...
The typing documentation is distributed over multiple sites, at the moment. There's also a lot of institutional knowledge that's onlyt written down in some issue discussions. https://typing.readthedocs.io is supposed to...