Tagged Questions

0
votes
2answers
43 views

How does pylint quit the Windows command box it is running in?

Pylint is doing something odd on my Windows box - something that shouldn't be possible. This isn't a question about fixing pylint, so much as fixing my understanding. I have a typ …
3
votes
3answers
359 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. Bu …
4
votes
2answers
295 views

PyLint, PyChecker or PyFlakes ?

I would like to get some feedback on these tools on : features; adaptability; ease of use and learning curve.
1
vote
1answer
82 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 gene …
0
votes
2answers
81 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 repor …
0
votes
1answer
39 views

epylint script is not working on Windows.

I have installed http://ftp.logilab.org/pub/pylint/pylint-0.18.1.tar.gz on Windows and now I am trying to configure my Emacs's flymake mode using epylint script. But it is not work …
0
votes
1answer
75 views

pylint false positive for superclass __init__

If I derive a class from ctypes.BigEndianStructure, pylint warns if I don't call BigEndianStructure.init (). Great, but if I fix my code, pylint still warns: import ctypes class …
10
votes
6answers
1k 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 …
1
vote
4answers
147 views

Python composite pattern exception handling & pylint

I'm implementig a Composite pattern in this way: 1) the "abstract" component is: class Component(object): """Basic Component Abstraction""" def __init__(self, *args, **kw): r …
3
votes
5answers
236 views

pylint warning on ‘except Exception:’

For a block like this: try: #some stuff except Exception: pass pylint raises warning W0703 'Catch "Exception"'. Why?
2
votes
3answers
437 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 ( …
1
vote
7answers
370 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 …