Sebastian Rittau

Results 127 issues of Sebastian Rittau

**Describe the bug** Two generated files in omegaconf 2.2.1 use the `typing.io` namespace, which has been deprecated since Python 3.8 and will be removed in Python 3.12: * omegaconf/grammar/gen/OmegaConfGrammarLexer.py *...

bug

In the past, we've worked around typechecker bugs and missing features in typeshed. But as the amount of typecheckers grows and type stubs are used for more that just type...

project-discussion

@encukou just announced the new python organization repository policy: https://discuss.python.org/t/new-python-organization-repository-policy/17376 One of the points is that: > all repositories under python will need to require the CLA While this is...

project-discussion

Example: `stubs/paramiko/paramiko/kex_ecdh_nist.pyi` contains imports from `cryptography`, but pyright can't find `cryptograpy`, probably because it's "hidden" in `stubs/cryptography`. Cc @erictraut and @jakebailey: Do you have any ideas how we could fix...

project

At the moment, whenever there is change to typeshed, we test all stdlib and third-party packages in the same testing environment, using the `--custom-typeshed-dir` so that all packages can see...

project

This script lists all third-party package versions in typeshed and on PyPI and the latest release date of the upstream package. This allows us to quickly spot outdated packages. By...

* [ ] mypy (python/mypy#731), supported using a flag * [x] pytype * [x] pyright * [x] pyre * [x] PyCharm Test case: ```python from typing import TypeAlias Recursive: TypeAlias...

feature-tracker