Dani Alcala

Results 99 comments of Dani Alcala

Can be done once all versions including py3.7 are deprecated

What's the consensus on implementation? Is fixing the issue as stated originally the way to go?

What should the linter name be here, `broad-raise`?

> 'old-names' for that. That's a way to handle backward compat, right? Or since this is a breaking change would this only be released in pylint 3.x? Trying to understand...

> See C0111 /missing-docstring for example. Just curious since I've used this msg as an example. Should code using `module-docstrong` such as `@utils.only_required_for_messages("missing-docstring", "empty-docstring")` be updated at some point to...

> > @Vihrastik You need to call `context_manager` for that to be valid, e.g.: > > ```python > > import contextlib > > > > @contextlib.contextmanager > > def context_manager():...

This is very much related to used-before-assignment ``` print(hello) hello = "hi" ``` but since it's related to functions, I guess we need a new checker for `undefined-function` / class,...

> @clavedeluna I'll have a look at converting this into a message tomorrow. You can do so as well if you want to? I'd be happy to guide you in...

Alright so maybe I'm missing something obvious but how is `pylint/checkers/utils.py:1996: error: Returning Any from function declared to return "bool` an issue for `return attr.attrname == node.attrname` is that not...