typeshed
typeshed copied to clipboard
Collection of library stubs for Python, with static types
Closes #12598
Release: https://pypi.org/pypi/setuptools/74.0.0 Repository: https://github.com/pypa/setuptools Typeshed stubs: https://github.com/python/typeshed/tree/main/stubs/setuptools Changelog: https://setuptools.pypa.io/en/stable/history.html Diff: https://github.com/pypa/setuptools/compare/v73.0.1...v74.0.0 Stubsabot analysis of the diff between the two releases: - 0 public Python files have been added. - 1...
I'm currently going through all mypy failures in https://github.com/jaraco/skeleton/issues/143 Some of those are caused by typeshed stubs that could be improved, I'll be using this issue as an aggregated checklist...
I guess the lack of this attribute causes mypy and pyright to emit a false positive error for the following code. ```python def a(): pass a.__call__ ``` mypy: ``` file.py:2:...
Adding types for https://github.com/google/atheris
Currently `requests.get` and other similar methods produce a type error if you try to pass them a `http.cookiejar.CookieJar` as cookies. As far as I can tell this is a mistake...
Hello team! I just wanted to bring to your attention a new PEP about package repository namespaces where I used your packages/community as a motivating example 🙂 We would love...
See implementations [here](https://github.com/python/cpython/blob/e38d0afe3548b856ccf0b05c01ed3eefc69cb3e7/Modules/_threadmodule.c#L1956).