typeshed
typeshed copied to clipboard
Collection of library stubs for Python, with static types
Test example I'm using for support, ```python from typing import TypedDict from typing_extensions import Unpack class Foo(TypedDict, total=False): a: int b: str def f(**kwargs: Unpack[Foo]) -> None: ... f(a=1, b="2")...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/python/typeshed). ## Awaiting Schedule The following updates are...
The Python 3.13 beta 1 has just been released, and there's a lot of functions and classes that are either new or changed in Python 3.13! This is a great...
Large parts of this are still baseline stubs, but the higher level platypus API and some of the `lib`/`pdfgen` components it depends on are fairly complete and tested against several...
The `_interpreters` and `_interpchannels` packages were added in 3.13b1 but are missing type annotations. Related #11990 I'd be happy to submit these sometime over the next week in a PR
Cf. #11463
Part of #11769 This finds 25 more modules with unannotated items (due to `Incomplete`) than our current pyright stricter config.
Fixes #9723
Release: https://pypi.org/pypi/pyinstaller/6.7.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.6.0...v6.7.0 Stubsabot analysis of the diff between the two releases: - 0 public Python files have been added. - 0...