Joël Larose
Joël Larose
Any word on when 2.0 will be released with the fixed tracing for "async def" functions/methods? I've been using this package to help with some debugging, and it's been great!...
I was going to open a new issue in response to https://github.com/python/typing/issues/758, but found this one already opened :)
I seriously doubt this is idea is supported, but I'll ask anyway.... Is it possible to `@overload` a class like you can for a function/method? The reason I thought of...
Could we have a generic Property class added to `typing`? PEP 614 would allow something like this: ```python from typing import Property class C: def __init__(self, prop: int): self._prop =...
Experimenting with this idea, I found a possible solution using the existing API. ## Summary Create type-hint for a fixed-length homogeneous tuple directly with `types.GenericAlias`. ```python from types import GenericAlias...
> So is this supported in mypy yet? In any other checker? Is it in typeshed? https://github.com/python/mypy/issues/7818 was an issue raised to request support for `ellipsis`, but closed after it...
> > Experimenting with this idea, I found a possible solution using the existing API. > > ## Summary > > Create type-hint for a fixed-length homogeneous tuple directly with...
"**CSS Speech Module Level 1**" is now a _W3C Candidate Recommendation Draft_ https://www.w3.org/TR/css-speech-1/ Trying to figure out what, if anything, supports it.
I think this is really a matter of intent. In the initial code listing, what you're telling the user of your class is the parameter to `update` must be an...
@lpulley The example you provided is exactly the type of situation that the `Self` type is intended to solve. The behaviour you're seeing from mypy is correct. The mistake is...