Avasam
Avasam
https://github.com/google/pytype/issues/727#issuecomment-1371631692 Hi, I'm trying to look into this MSVC syntax error, but for the life of me I can't figure out how to use `/std:c++20` instead of `/std:c++14` when doing...
FWIW, stripe-python have been adding annotations and completing types recently https://github.com/stripe/stripe-python/pulls?q=is%3Apr+sort%3Aupdated-desc+is%3Aclosed+type And seem to plan to ship `py.typed` soon https://github.com/stripe/stripe-python/pull/1074/files#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7 Related feature request: https://github.com/stripe/stripe-python/issues/650 Typeshed is so far behind, it...
> We could now use `@deprecated`. Which would also allow suggesting a replacement and customizing it per python-version. That stackoverflow answer also has good alternatives if `--arg=True`/`--arg=False` is really what's...
npm/node has `optionalDependencies` that can be specified in package.json. Allowing you to specify ranges on other co-installed dependencies, without forcing them to be installed. Does python's requirements system / pip...
idk if we have a way to mark stubs as partial in typeshed (I mean add the `partial` keyword in the `py.typed` marker). Because some stubs, like tensorflow, should definitely...
> If anybody has any specific issues with our tensorflow stubs, please feel free to open a followup issue. I'd prefer moving the discussion to a new issue. That being...
Other than for semantics, where `Any` is used as "not 'all' types fit, but too complex to represent", and where a hypothetical `AnyOf` would fit, is there any case where...
> That said, we haven't returned `NotImplemented` in typeshed yet and I'm not sure that all type checkers even support this. FWIW, I've been using `-> NoReturn | : ...`
> If you think about Python's type hints in terms of set theory, `NoReturn` is equivalent to the empty set -- the bottom type, a type with no members --...
This issue is left open and I still see versions of https://pypi.org/project/types-typing-extensions and https://pypi.org/project/types-pkg-resources . Is there still something left to do here?