Claudiu Popa

Results 107 comments of Claudiu Popa

This was already mentioned in https://github.com/PyCQA/pylint/issues/2291, where the culprit was also alpine. But you said an interesting thing in that we can make `typed_ast` optional. The thing is that we...

@hairyhenderson `typed_ast` was merged in the standard library's `ast` module on Python 3.8, if I recall correctly. At this point, I think we need to make `typed_ast` optional for 3.5-3.7.

Looks good, but check my suggestion to see if it can improve the situation for Python 3.

Because it is a builtin and we have limited support for inferring builtins. Check raw_building, where everything happens (and also check the rewrite from 2.0; unfortunately, in 2.0, we cannot...

I think we can wait for 2.0, if you don't mind. We can just do the work once, in 2.0's ``raw_building.py``, rather than duplicating it for 1.5 and , then,...

You can check the branch, I think there were multiple commits.

Thanks for the report @smontanaro ! I'm afraid I can't reproduce it, does the reproduction requires some additional steps? Here's my output using the same version as you: ``` pylint...

Hey @smontanaro I'm afraid I still can't reproduce it with ``` pylint 2.4.4 astroid 2.3.3 Python 3.8.1 (default, Feb 13 2020, 10:17:07) [Clang 8.1.0 (clang-802.0.42)] ``` From the traceback it...

Hey @smontanaro I was able to reproduce it using your instructions, thanks. I don't have a solution at the moment, other than increasing the recursion limit with `--init-hook="import sys; sys.setrecursionlimit(2000)`....

I'm not sure, I think every tool has their own, e.g. mypy, pytype and PyCharm, but I might be wrong on this. It will be huge, but it won't replace...