Tushar Sadhwani

Results 14 comments of Tushar Sadhwani
trafficstars

@DanielNoord https://github.com/PyCQA/astroid/blob/1a698acd4ca746851e6a525bf7e012ac6e6eb877/astroid/nodes/scoped_nodes/scoped_nodes.py#L1713 I think this line is the exact problem. Did `FunctionDef.args` ever return a list of nodes before? It seems to return an `Arguments` type now.

Well, it seems like `typeanal.py` also uses the one method that I had to change in `nodes.py`, so this PR will be migrating all 3 of those files at once,...

@sobolevn would you be able to review this? The longer it takes to get reviewed the more work I'd have to keep putting in to maintain the PR

@JukkaL PTAL, #10959 is already merged for example, this is just a continuation of the effort (with more to come)

Friendly bump, it's been a year since I first started these set of PRs, and I really want to finish this refactor, to be able to add support for issue...

A few notes: - `ruff` uses RustPython, and RustPython's AST doesn't yet parse match statements. However you can instead use `libcst`'s parser, which is heavier but supports match statements. (Although,...

What I meant here was: When pydocstyle crashes, the user doesn't know if it's a bug in their code, or is it a bug in pydocstyle's code. Certainly, when I...

@sobolevn I have a proposal in https://github.com/python/mypy/pull/11396, but there has been zero core dev interaction on that PR. If you can take a look at it, not only will we...

Well, need to add tests as well :P but I'll take it.

Actually, can you replace the `addopts` and `filterwarnings` with using the `covdefaults` package instead?