Alex Waygood
Alex Waygood
~`pwndbg` might be a good project to add~, since they use `types-gdb` in CI — I doubt we have any coverage of typeshed's `gdb` stubs currently: https://github.com/pwndbg/pwndbg/blob/fef5077eef8092cf16828457792f5d402ad792b6/dev-requirements.txt#L10 (they recently contributed...
The problematic project is `zetta_utils`. primer tries to run `git clone --recurse-submodules https://github.com/ZettaAI/zetta_utils --depth 1`. But if you run that currently, here's what happens: ``` >git clone --recurse-submodules https://github.com/ZettaAI/zetta_utils --depth...
Looks like they might have added some "private submodules" or something, meaning that `--recurse-submodules` doesn't work for that repo anymore unless you're a member of the Zetta-AI team?? See https://github.com/ZettaAI/zetta_utils/commit/9dd6a870a031568dbe278bf073cc4fc0deb62ae5
Should the project just be deleted from `projects.py`? Commented out for now? Should we change the way we try to clone the projects to avoid `--recurse-submodules` for some or all...
Thanks very much!
> The error looks like a bug in stubtest, but you can probably work around it by not using overloaded context managers. Instead of `@contextmanager` together with `-> Iterator[Foo]`, you...
@willingc are you sure this has been addressed in CPython? I think deciding on a general policy here, and adding it to the devguide, would be really useful. https://github.com/python/cpython/issues/91485 didn't...
> #8708 has been closed. Can this be un-deferred yet? No, pytype still crashes (meaning our CI would fail) if we make a class Generic over a TypeVarTuple, which is...
> Is that the one that has apparently been fixed a couple of days ago no
@erictraut's PR #6670 changed `functools.wraps` to use `ParamSpec`. However, we found that this change only caused regressions for mypy users (likely at least in part because mypy at the time...