correctmost
correctmost
My preference would be to enable Pylint checks without the PKGBUILD changes for now. The checks will help validate the fixes for the remaining mypy and ruff violations and prevent...
OSS-Fuzz discovered another `IndexError` when there's only one argument to `_alias` ([OSS-Fuzz bug report](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=64639)): ```python a = _alias(int) ``` ``` Traceback (most recent call last): File "pylint/pylint/checkers/utils.py", line 1365, in...
Awesome, thanks! I submitted a PR to fix the build and update the maintainers list: - https://github.com/google/oss-fuzz/pull/12386
The OSS-Fuzz PR was merged, so you should now have access to the following items with your Google account: * The [OSS-Fuzz dashboard](https://oss-fuzz.com) * An [overview page](https://oss-fuzz.com/crash-stats?project=astroid) of all crashes...
Updates for the above tasks: > Verify access to the system Hopefully you have access now :) > Triage all existing reports All issues have been triaged. Here's the full...
> Coverage builds are currently broken. I am trying to get more debug info with this PR: [google/oss-fuzz#12502](https://github.com/google/oss-fuzz/pull/12502). Coverage builds were fixed by these changes: - https://github.com/pylint-dev/astroid/pull/2596 - https://github.com/pylint-dev/astroid/pull/2597 -...
OSS-Fuzz was upgraded to Python 3.10.14 yesterday. I submitted a PR to start using the `main` branch for fuzzing once again: - https://github.com/google/oss-fuzz/pull/12763 Once that change takes effect, we can...
OSS-Fuzz was [recently updated to Python 3.11.13](https://github.com/google/oss-fuzz/pull/13404), which seems to be causing many tickets to be incorrectly closed as fixed on the OSS-Fuzz issue tracker. I assume the crashes will...
Any further changes required for this PR? Thanks!
The panic still seems to occur with code like this: ```python class C[T: C](set[object]): pass ```