Tagged Questions

Python source code analyzer looking for bugs and signs of poor quality.

learn more… | top users | synonyms

63
votes
2answers
9k views

PyLint, PyChecker or PyFlakes?

I would like to get some feedback on these tools on : features; adaptability; ease of use and learning curve.
48
votes
6answers
9k views

Are there any static analysis tools for Python?

I am starting to use Python (specifically because of Django) and I would like to remove the burden for exhaustive testing by performing some static analysis. What tools/parameters/etc. exist to ...
38
votes
9answers
7k views

Using Pylint with Django

I would very much like to integrate pylint into the build process for my python projects, but I have run into one show-stopper: One of the error types that I find extremely useful--:E1101: *%s %r has ...
15
votes
1answer
139 views

Tool to help eliminate wildcard imports

I'm refactoring and eliminating wildcard imports on some fairly monolithic code. Pylint seems to do a great job of listing all the unused imports that come along with a wildcard import, but what i ...
14
votes
3answers
4k views

How can I use Emacs Flymake mode for python with pyflakes and pylint checking code?

For checking code in python mode I use flymake with pyflakes Also I want check code style (pep8) with pylint (description on the same page with pyflakes) This solutions work. But I can't configure ...
10
votes
3answers
449 views

Pylint equivalent for Py3k

Pylint doesn't yet support Py3k, so am looking for an alternative. [note] An immature branch off some VCS would be sufficient enough for me to try out.
10
votes
2answers
1k views

I'm having trouble setting up pylint with pydev

I have installed pylint via easy_install. I can run lint.py <filename> with success. But pydev refuses to use it. I checked "use pylint" I configured correct path I updated my python ...
9
votes
4answers
268 views

_shutdown AttributeError (ignored) when linting code that uses M2Crypto

I'm running lint as follows: $ python -m pylint.lint m2test.py with this code: import M2Crypto def f(): M2Crypto.RSA.new_pub_key("").as_pem(cipher=None).split("\n") The lint output ends ...
9
votes
5answers
265 views

How to get pylint warnings to be marked in the Pydev Eclipse editor margin?

I have pylint installed (works fine on the command line) and set up within Pydev in Eclipse. Pylint is being triggered OK when I edit files, and is outputting to the Eclipse console. But, the pylint ...
9
votes
3answers
599 views

How do I disable a PyLint warning?

I'm trying to disable warning C0321 ("more than one statement on a single line" -- I often put if statements with short single-line results on the same line), in PyLint 0.21.1 (if it matters: astng ...
7
votes
3answers
112 views

python styling ** question

I'm working on my first project using Python 2.7. We're coming from a Java background and our first instinct was to write python code in a Java-esque way. But now we're trying to adapt as much as ...
7
votes
3answers
879 views

PyLint Best Practises?

pyLint looks like a good tool for running analysis of python code. However, our main objective is to catch any potential bugs and not coding convention. Enabling all pyLint check seems to generate lot ...
7
votes
1answer
222 views

trouble getting pylint to find inherited methods in pylons/SA models

I have a Pylons app that I'm using SqlAlchemy declarative models for. In order to make the code a bit cleaner I add a .query onto the SA Base and inherit all my models from that. So in my ...
7
votes
2answers
353 views

Reason for low Pylint ratings of Python standard library code

A friend told me about Pylint and just out of curiosity, I ran it against some of the standard library modules. To my surprise, the ratings were low. Here are a few runs: os.py Your code has been ...
6
votes
1answer
100 views

Pylint - distinguish new errors from old ones

Does anybody know how to distinguish new errors (those that were found during latest Pylint execution) and old errors (those that were alredy found during previous executions) in the Pylint report? ...
6
votes
3answers
602 views

Quieting pylint false-positives when using django

I'd like to sanely quiet a few pylint errors when using Django. The two that are causing the greatest irritation are when deriving from django.db.models.Model and accessing objects, and ...
6
votes
4answers
523 views

invoking pylint programmatically

I'd like to invoke the pylint checker, limited to the Error signalling part, as part of my unit testing. so I checked the pylint executable script, got to the pylint.lint.Run helper class and there I ...
6
votes
6answers
2k views

PyLint “Unable to import” error - how to set PYTHONPATH?

I'm running PyLint from inside Wing IDE on Windows. I have a sub-directory (package) in my project and inside the package I import a module from the top level, ie. __init__.py myapp.py one.py subdir\ ...
5
votes
2answers
633 views

How to configure PyLint to check all things PEP8 checks?

Searching for an answer on PyLint's mailing list brings no interesting results. PyLint is known to be very customizable so I guess this should be possible... The reason I would like PyLint to check ...
5
votes
4answers
324 views

Should wildcard import be avoided?

I'm using PyQt and am running into this issue. If my import statements are: from PyQt4.QtCore import * from PyQt4.QtGui import * then pylint gives hundreds of "Unused import" warnings. I'm ...
5
votes
1answer
1k views

How to handle the pylint message: Warning: Method could be a function

Being new to Python, I decided to get some feedback on a class I'd written ASAP so I ran it against pylint. Is the message it gave "Warning: Method could be a function" telling me that it would be ...
5
votes
6answers
1k views

pylint warning on 'except Exception:'

For a block like this: try: #some stuff except Exception: pass pylint raises warning W0703 'Catch "Exception"'. Why?
4
votes
2answers
82 views

Excluding South migrations from Pylint

I'm using South for migration in my Django project. When I run Pylint on my project I get a bunch of errors from the migration files. How can I exclude migration files from Pylint? I'm on a Windows ...
4
votes
2answers
96 views

Pylint recursively for a given filename

I have a Django project and I'm working on Pylinting my way through it. I have a couple situations where I'd like to be able to recursively find all files with a given name and pylint them ...
4
votes
2answers
293 views

Change default python coding style

In python i'm following camelCase Naming style. I checked my code with "pylint" and it gives error for not following lower_case_with_underscores style. Also i use netBeans IDE for coding. This IDE ...
4
votes
4answers
2k views

how to use pylint in vim

I do not want to install another plugin, like pylint.vim, And today, I decide to use vim edit python instead of pydev which is a eclipse plugin. But I got issues. I have add this in my vimrc ...
4
votes
3answers
432 views

Please help: pylint does not work with Emacs23

I am trying to use Pylint with Emacs on Windows XP. My Emacs version is EmacsW32 23.1, pylint is 0.21.3 with Python 2.5. After easy_install pylint, I added the following lines to Emacs init file, ...
4
votes
2answers
520 views

How would I start integrating pyflakes with Hudson

We use Hudson for continuous integration with the Violations Plugin which parses our output from pylint. However, pylint is a bit too strict, and hard to configure. What we'd rather use is pyflakes ...
4
votes
3answers
2k views

python code convention using pylint

I'm trying out pylint to check my source code for conventions. Somehow some variable names are matched with the regex for constants (const-rgx) instead of the variable name regex (variable-rgx). How ...
3
votes
1answer
371 views

Pylint not working with Emacs GUI on OS X; works from command-line

When run from the command-line (emacs filename.py) flymake and pylint work perfectly together. Errors are highlighted properly. (Although I can't tooltip hover to get error details because it's ...
3
votes
3answers
321 views

pylint bug - E1101 & E0102 upon use of @property + @foo.setter

I noticed pylint doesn't handle well the case of: @property def foo(self): return self._bar.foo @foo.setter def foo(self, foo_val): self._bar.foo = foo_val Though it's a perfectly valid case ...
3
votes
1answer
533 views

Why doesn't Pylint like built-in functions?

I have a line like this: filter(lambda x: x == 1, [1, 1, 2]) Pylint is showing a warning: W: 3: Used builtin function 'filter' Why is that? is a list comprehension the recommended method? Of ...
3
votes
3answers
298 views

Can an API tell Pylint not to complain in the client code?

I have some code in a reusable class that modifies some types. Here's a simplified version. class Foo: def __init__(self): self.count = 0 def increment(self): self.count += 1 ...
3
votes
2answers
223 views

Colorize PyLint Output?

Anyone have any tricks/techniques for colorizing PyLint output?
3
votes
2answers
104 views

Why does Pylint give error E0702, raising NoneType, on this raise statement?

Say I have the following code. def foo(): foobar = None if foobar is not None: raise foobar When I run this code through pylint, I get the following error: E0702:4:foo: Raising ...
3
votes
2answers
525 views

What makes pylint think my class is abstract?

As I understand it, Python (2.5.2) does not have real support for abstract classes. Why is pylint complaining about this class being an "Abstract class not reference?" Will it do this for any class ...
3
votes
3answers
526 views

Enable pylint in Netbeans

How can I integrate pylint with netbeans?
3
votes
1answer
1k views

How to specify a configuration file for pylint under windows?

I am evaluating pylint as source code checker and I would like to customize the maximum number of characters on a single line. I would like to use a configuration file. I've generated a template ...
3
votes
3answers
501 views

pylint not recognizing some of the standard library

I'm using pylint + pydev, with python 2.6. I have a module with just this line of code from email import Message Now when I try to run this module it runs fine. But pylint reports an error: ID: ...
3
votes
7answers
2k views

Python: avoiding pylint warnings about too many arguments

I want to refactor a big Python function into smaller ones. For example, consider this following code snippet: x = x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 Of course, this is a trivial example. ...
2
votes
6answers
125 views

Unneeded parts when unwrapping tuple/list

Python is all about writing beautiful code. So, I was running pylint to check the "beautifulness" of my code, when I bump into something: Unused variable 'myvar1' From this part of my code: for ...
2
votes
2answers
74 views

How to fix pylint warning “Abstract class not referenced”?

I have a Python class that raises "NotImplementedError" for a couple of methods and the class is inherited by a few other classes which are defined in their own files. When I run Pylint on the file ...
2
votes
1answer
68 views

pylint.vim does not show warnings

I just installed pylint and pylint.vim plugin but when pylint is invoked from vim it only shows a code rate and not the warnings.Anyone got any ideas why this is so?
2
votes
5answers
113 views

Using unitialized variables in Python

Background: I have a class modeling a chip with registers, the chip has a bunch of registers, one of them is a high temperature limit for the built-in temperature sensor. I have the following: class ...
2
votes
0answers
214 views

Alternatives to imp.find_module?

Background I've grown tired of the issue with pylint not being able to import files when you use namespace packages and divide your code-base into separate folders. As such I started digging into the ...
2
votes
1answer
163 views

pylint complains about wxPython 'Too many public methods'

For the following simple wxPython snippets: import sys import wx class MyApp(wx.App): def OnInit(self): self.frame = wx.Frame(None, title="Simple wxPython App") self.frame.Show() ...
2
votes
2answers
250 views

Python correctness (i.e., lint) analyzing for Notepad++

Does anyone know of anything like pylint or pychecker for notepad++? Or perhaps how to use pylint in notepad++.
2
votes
1answer
331 views

Getting started with Pylint for Jython (jython2.5.1)

We have a ton of Jython scripts for our deployment automation; I'd like Pylint to be part of our build pipeline. I downloaded and installed logilab-astng, logilab-common and pylint from here: ...
2
votes
2answers
252 views

change background color highlight for errors detected by pylint with ropevim and ropemode installed

It changes the background to red, I can't read the text to correct the error! How can I configure a different highlight? Does it have a setting?
2
votes
1answer
374 views

Disable all `pylint` 'Convention' messages

Background I find pylint useful, but I also find it is horrifically undocumented, has painfully verbose output, and lacks an intuitive interface. I'd like to use pylint, but it keeps pumping out an ...

1 2