Claudiu Popa

Results 107 comments of Claudiu Popa

@atodorov this is a bit of an undefined behaviour. There's currently no guarantee for the plugins to get the fully loaded configuration file at the time they are registered. But...

Yeah, this might be tricky to get right, but it would an useful check to have.

There is not, but looks useful.

This sounds good to me, but I think we should do it for the general case not just for exceptions. Instantiating a class and not doing anything with it sounds...

@vapier From my understanding, this new check will handle the following case: ``` Class() ``` while ```Class().run()``` and `c = Class(); c.run()` will not be caught. The former looks more...

@Vihrastik You need to call `context_manager` for that to be valid, e.g.: ```py import contextlib @contextlib.contextmanager def context_manager(): try: yield finally: pass with context_manager(): # notice the function call pass...

Hi @gyermolenko Feel free to tackle this issue! Regarding your issue with `posonlyargs`, `pylint` from `master` needs the up to date `astroid`.

Hi, thanks for creating an issue. Would you be interested in contributing a patch for this? `pyreverse` is a great tool but at this moment it's not a focus of...

I think this would be better handled by someone that uses emacs. Closing this for now.