[code-quality] (no subject)

2015-10-19 Thread Luis San Martin
Hello, I've tried pep8 and flake8 on python 3.6.0a0 though both will not work. pathcl@sid:~/src$ flake8 Traceback (most recent call last): File "/home/pathcl/.pyenv/versions/3.6-dev/bin/flake8", line 7, in from flake8.main import main File "/home/pathcl/.pyenv/versions/3.6-dev/lib/pytho

Re: [code-quality] (no subject)

2015-10-19 Thread Ian Cordasco
On Mon, Oct 19, 2015 at 8:09 AM, Luis San Martin wrote: > Hello, > > I've tried pep8 and flake8 on python 3.6.0a0 though both will not work. > > pathcl@sid:~/src$ flake8 > Traceback (most recent call last): > File "/home/pathcl/.pyenv/versions/3.6-dev/bin/flake8", line 7, in > from flake8.m

[code-quality] How to tell pylint about base class attributes?

2015-10-19 Thread Skip Montanaro
I'm linting a piece of code containing a class which inherits from a base class which is not available at lint time. Consequently, I get all sorts of messages about unknown attributes which the subclass uses from its parent. Short of completely disabling E1101 (no-member), is there a way to say, "c

Re: [code-quality] How to tell pylint about base class attributes?

2015-10-19 Thread Claudiu Popa
On Mon, Oct 19, 2015 at 8:29 PM, Skip Montanaro wrote: > I'm linting a piece of code containing a class which inherits from a base > class which is not available at lint time. Consequently, I get all sorts of > messages about unknown attributes which the subclass uses from its parent. > Short of c

Re: [code-quality] (no subject)

2015-10-19 Thread Luis San Martin
Thank you Ian On Mon, Oct 19, 2015 at 10:13 AM, Ian Cordasco wrote: > On Mon, Oct 19, 2015 at 8:09 AM, Luis San Martin > wrote: >> Hello, >> >> I've tried pep8 and flake8 on python 3.6.0a0 though both will not work. >> >> pathcl@sid:~/src$ flake8 >> Traceback (most recent call last): >> File