DetachHead

Results 929 comments of DetachHead

it's not the same as using a `TypeVar` because that would allow you to narrow the return type when calling the function, which isn't valid: ```py def foo() -> T:...

> Similar, but is referring to `final` and is unrelated to `Final` what is `final`

isnt that already what stubgen does?

> In those examples, why are the names different (in your example, it looks like `class StrExtension` is specifying a new class / stub for a class that extends str,...

why restrict this feature to the baseline file? it would be nice to have in the normal output as well

certain error codes are dangerous to baseline because they can cause other errors to go undetected: ```py def foo(value: str = None) -> None: #baselined "no implicit optional" error bar:...

From my understanding, it doesn't automate releases like this action does, it only generates the release notes. I'd imagine the `automatic-releases` action is still needed to actually create them

may be a limitation in the compiler related to https://github.com/microsoft/TypeScript/issues/42938