Pierre Sassoulas

Results 541 comments of Pierre Sassoulas

Hello, thank you for opening the issue. Can you use text instead of image so we have the full stacktrace and it's searchable and readable by text to speech software...

It should work like a standard Django app (but maybe it isn't right now).

There kinda is a way to do that, not very user-friendly though. You can use `python manage.py dumpdata` then `python manage.py loaddata` every week after changing the title in the...

@belm0 would you mind trying out the new astroid using ``pip install git+https://github.com/pylint-dev/astroid.git@main`` and reporting back ?

Thank you for checking. My bad, it's going to be checkable but with ``pip install git+https://github.com/pylint-dev/pylint.git@main `` and only when we release a new version of astroid with the latest...

Are we asking for plugins for all the libs that need brains now ? I would be okay with that. But do we move the current astroid brains in their...

Here's a django example from #7953 thanks to @masiak2: ```python from django.db import models from django.db.models import Q class Author(models.Model): name = models.CharField(max_length=200) email = models.EmailField() # this is fine...

Another example: ```python "https://github.com/PyCQA/pylint/issues/8297" from dataclasses import dataclass @dataclass class C: "class doc" a: str b: int = 10 c: float | int | None = None ```

I've let this go stale, I'm very sorry. I wonder how we can make a simple coherent system alongside the globbing added in #8290 / #8312. I have the feeling...