typeshed
typeshed copied to clipboard
Collection of library stubs for Python, with static types
Release: https://pypi.org/pypi/pyinstaller/6.11.0 Homepage: https://www.pyinstaller.org/ Repository: https://github.com/pyinstaller/pyinstaller Typeshed stubs: https://github.com/python/typeshed/tree/main/stubs/pyinstaller Diff: https://github.com/pyinstaller/pyinstaller/compare/v6.10.0...v6.11.0 Stubsabot analysis of the diff between the two releases: - 3 public Python files have been added: `PyInstaller/hooks/hook-PySide6.QtGraphsWidgets.py`, `PyInstaller/hooks/hook-setuptools._vendor.importlib_metadata.py`,...
Let me know if you spot any projects using 3.13 in the wild
Release: https://pypi.org/pypi/networkx/3.4.1 Homepage: https://networkx.org/ Repository: https://github.com/networkx/networkx Typeshed stubs: https://github.com/python/typeshed/tree/main/stubs/networkx If stubtest fails for this PR: - Leave this PR open (as a reminder, and to prevent stubsabot from opening another...
When passing in `stdin`, `stdout`, or `stderr` those attributes are also set on the `Popen` instances, i.e. not `Optional`/`None`. Given the many overloads there are already (https://github.com/python/typeshed/blob/2d82e1fb8bcedc75be3ae91f911472931c92490a/stdlib/3/subprocess.pyi#L844-L1156) and that this...
I stumbled across this issue when working on some code structured like this: ```python # seq1 has a type of list[int] # seq2 has a type of list[str] # Neither...
Closes #12172
Since this is typing related, I'll ask here before adding to cpython's 5k+ issues. In https://github.com/pypa/setuptools/pull/4604#discussion_r1777834900 (read this comment for more details) , I found a usage of `configparser.ConfigParser(default_section=None, delimiters=("=",))`...
Now that third party stubs are released as individual packages it would be great if the package included the upstream version range as an install requirements. Currently the generated stubs...
This is a small single file module which for the most has a main `config` function and a few supporting classes. I used the docs as a first reference, since...