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

learn more… | top users | synonyms

1
vote
0answers
18 views

Handling dynamic typing in pylint?

We have pylint hooked up with our Django build, and one of the high priority errors we're getting "Instance of 'unicode' has no 'state' member" I've set the generated-members variable on variables ...
1
vote
3answers
46 views

nose tools and pylint

What is the right way to use nose.tools and keep pylint happy? The following code: ''' This is a test ''' import nose.tools import nose.tools.trivial nose.tools.assert_equal(1, 1) ...
0
votes
0answers
15 views

How do I make pylint recognize twisted and ephem members?

I very much like having pylint tell me if I'm using a non-existent member. However, my new project is using both twisted and the ephem modules, which seem to confuse pylint. How can I get rid of ...
2
votes
1answer
43 views

Checking unwanted type change in Python

I come from static-type programming and I'm interested in understanding the rationale behind dynamic-type programming to check if dynamic-type languages can better fit my needs. I've read about the ...
1
vote
3answers
96 views

Faster attribute access in python

Consider the following class: class MyObject(object): __slots__ = ('_att1', '_att2') def __init__(self): self._att1 = None self._att2 = None @property def ...
3
votes
1answer
75 views

Pylint says 'string' module is deprecated. What's the new way to get range of lowercase characters?

I was just pylinting some code and noticed a colleague had imported the old Python 'string' module, not to use any functions from it but simply to have access to the constant 'string.lowercase'. I ...
2
votes
1answer
26 views

pylint: ignore multiple in rcfile

In my django project I'm using an externally written app which is badly written. Now I want to ignore this app from my pylint reporting, however I can't get pylint to ignore it. Pylint is already ...
2
votes
2answers
24 views

Pylint error with abstract member variable

I have the following code: class A(object): def random_function(self): print self.name def abstract_function(self): raise NotImplementedError("This is an abstract class") ...
0
votes
1answer
53 views

pylint error runs fine in python3.2 but fails in python3.3

Running Ubuntu QQ: I have a Python project that uses PyQt. In several places I import QtCore and QtGui: from PyQt4 import QtCore, QtGui Until now, I have been using python3.2.x (3?) When I run ...
0
votes
0answers
58 views

Cannot installing Pylint on Win 7 machine running Python 3.3.1

setup.py install fails with the following stack trace. Any ideas? C:\Python33\libs\pylint-0.1.2>python setup.py install running install running build Traceback (most recent call last): File ...
0
votes
2answers
68 views

Python more functions

I would like to separate this into several smaller functions in order to make it look tidier and easier to read, but whenever I try this I cannot seem to get it to work. Any help would be appreciated. ...
0
votes
0answers
13 views

Limit violations graph to recent builds

We are using Jenkins (V. 1.514) to run some PyLint analysis on our Python code. The plugin Violations is used to create the report and graph within Jenkins. However, the generated graph shows all the ...
0
votes
0answers
16 views

How my eclipse + pydev could recognize the functions in my project

I develop a python project. When I try to import some functions in other python files of the same project, pylint will report can not unsolved import from forder1.file1 import myfunction do you ...
1
vote
1answer
53 views

How to control of the python/Django/Celery code quality

I am leading a big python project, it using Django(model), celery, python. Right now, I just find the code quality is out of control. The problems are: The code submitted to git has some basic ...
0
votes
1answer
42 views

Is it possible to set different .pylintrc file per project in eclipse?

I saw I can change it per eclipse instance using this solution. I would like to set it per project. Is it possible?
3
votes
3answers
88 views

Python compile time type checking

Python doesn't check types at compile time because it can't, at least in some circumstances. But has anyone come up with a mechanism to do compile-time type checking based on extra annotations by the ...
2
votes
1answer
121 views

Pylint - Pylint unable to import flask.ext.wtf?

I've got my Pylint install importing flask just fine. And with that same installation of flask, I have wtforms running just fine in my application. However, when I run Pylint on a file importing ...
1
vote
1answer
36 views

Pylint - How to print Pylint's sys.path?

I'm attempting to add modules to my Pylint path so they can be imported by using the solution as seen in this question. Unfortunately, the modules I expect should be available for import after using ...
0
votes
1answer
103 views

pylint and pep8 not work with emacs24.2?

i try to intergrate pylint and pep8 into my emacs24.2, via some code like (require 'python-pep8) and (require 'python-pylint) in my .emacs.But i got the error as shown below: Debugger entered--Lisp ...
1
vote
2answers
55 views

Why does pylint not detect missing member functions (E1103) in lists?

When running pylint on a particular piece of code, I get false negatives for missing functions if the variables have been added to lists with .append() or += [var]. Is there any way to avoid having ...
1
vote
1answer
305 views

Trying to run pylint in Windows 7 and Python 3.3

I knew this general question is not new, but it seems my personal problem with it. I try to install pylint under Windows 7 for Python 3.3 (Yes I know it is not supported, but I know it is possible - ...
2
votes
1answer
56 views

Disable pylint for a single file in vim

I'd like to disable the pylint plugin for a single file in vim. I don't want to permanently disable pylint for the file, which is what adding a comment blocking pylint would do. The problem is that ...
4
votes
1answer
214 views

Django forms.ModelForm, Pylint, and new/old style classes

I have a Django 1.5 form that looks like this (simplified): class BidForm(forms.ModelForm): class Meta: fields = ( ) model = Bid def __init__(self, *args, **kwargs): ...
0
votes
2answers
140 views

How to disable pylint 'Undefined variable' error for a specific variable in a file?

I am hosting IronPython inside a C# application and injecting an API for the host into the global scope. I have just started to love syntastic for vim with pylint for checking my scripts. But I am ...
1
vote
1answer
80 views

Pylint not working as expected

Am using a pylint for checking error. My python codes in a directory and that directory contain many other sub folders and files. am checking recursively all folder file ends with .py. It is working ...
0
votes
0answers
152 views

jenkins job fails when i run full django tests

When i run the tests on my local machine everything works fine when i run only my apps tests everything works but when i run the full set of tests in jenkins it fails, and the even stranger thing is ...
1
vote
3answers
237 views

Python global keyword vs. Pylint W0603

Pylint W0603 states: Using the global statement. Used when you use the "global" statement to update a global variable. PyLint just try to discourage this usage. That doesn't mean you can not ...
4
votes
2answers
158 views

Pylint: can inherited public methods be exclude from statistics?

Pylint keeps reporting error (R: 73,0:MyLogging: Too many public methods (22/20)) for the following code: class MyLogging(logging.Logger): def foo(self): pass def bar(self): ...
2
votes
1answer
209 views

Pylint False Positive E1101: Instance of 'Popen' has no 'poll' member

Pylint is returning lots of false positives for the subprocess module: E1101:184,7:resetboard: Instance of 'Popen' has no 'poll' member E1101:188,4:resetboard: Instance of 'Popen' has no 'terminate' ...
1
vote
2answers
161 views

Pycharm External tools relative to Virtual Environment

Using the PyCharm IDE, when setting up an external tool, how can you set up the external tools with a path relative to use the current virtual env defaults.? An example being pylint - where I'd want ...
1
vote
2answers
330 views

Pylint ignore specific names

I have a problem with pylint, i.e. sometimes it repeats the same message for some variable/class/module etc. and I can't find a workaround for that. What I want is to say pylint "don't check [message ...
1
vote
1answer
463 views

What does pylint's “Too few public methods” message mean

I'm running pylint on some code, and receiving the error "Too few public methods (0/2)". What does this message mean? The pylint docs are not helpful: "Used when class has too few public methods, so ...
3
votes
1answer
115 views

List of pylint human readable message ids?

Recent versions of pylint allow for suppressing messages with human readable message ids. For example, instead of class MyTest(unittest.TestCase): # pylint: disable=R0904 ... you can specify: ...
0
votes
1answer
55 views

Run pylint daily and show results in webpage

Is there any project (preferably open source) that can run pylint daily on all my source code and and show some kind of report that aggregates the scores so that I can see which files are doing good ...
0
votes
0answers
72 views

Pylint ignores disable-msg - but only dependent on other modules linted in the same go

I have an issue with pylint, which I suspect might be a bug, but I have difficulties in boiling it down to something ticketable, so I would like to know if others have experienced what I am ...
3
votes
1answer
221 views

pylint can't find QtCore in PyQt4

I recently installed Python(x,y) for spyder and the PyQt4 support. I selected pylint during the install process, and loaded up a script from the code resources for 'Rapid GUI Development with Python ...
1
vote
1answer
91 views

How To Run Pylint From Ant

I need to run this command from ant: pylint -f parseable src/apps/api | tee pylint.out It outputs a pylint.out file. I tried this: <target name="pylint" description="Pylint"> <exec ...
1
vote
1answer
105 views

How to get pylint working in spyder

I'm new to python prorgamming. I'm having trouble with getting pylint to work i spyder. I have managed to install pylint in spyder and i get the pylint window in spyder. The problem is that i can't ...
1
vote
1answer
171 views

Pylint and unittest

I have a python project that is using pylint and unittest. Unittest has me using methods called setUp() which pylint doesn't like. Specifically: C0103: 57,4:<class>.setUp: Invalid name ...
1
vote
2answers
377 views

Setting up default pylint config.rc file in Windows

I'm using Pylint under Windows, and it's not reading my pylint-config.rc file. Is there a way to set up a default .rc file for Python within windows so that I don't have to keep typing it into the ...
3
votes
1answer
235 views

Win7/Python3.3: PyLint failed to load its plugins

Good evening! I have installed pylint on python 3.3 and got following problem: at initialization step pylint fails to load plugin modules (from package pylint.checkers). Thanks to debuging I found ...
3
votes
1answer
182 views

what's the difference between pylint 'disable' and 'disable-msg'?

I see some code with # pylint: disable=W0123 and some has # pylint: disable-msg=W0123 Are they just synonyms?
1
vote
1answer
169 views

Pylint doesn't show anything on Eclipse

I have installed the latest pylint and it works fine from Windows command line. I have added Pydev-PYTHONPATH with source directory that I want to lint. Also from Pytdev->PyLint I've selected 'Use ...
0
votes
3answers
583 views

How to configure pylint in the python source

Is it possible to disable certain pylint errors/warnings in the python source code itself ?
1
vote
2answers
66 views

Pylint and Tornado - fails on @tornado.web.authenticated

Pylint crashes when it encounters @tornado.web.authenticated class Handler1(tornado.web.RequestHandler): def get(self): return 'hello' class Handler2(tornado.web.RequestHandler): ...
1
vote
0answers
215 views

E40: Can't open errorfile C:\DOCUME~1\[…] on windows

I'm trying to use pylint.vim on windows. I have https://github.com/orenhe/pylint.vim version in C:\Program Files\Vim\vimfiles\compiler direcory. I added: autocmd FileType python compiler pylint To ...
1
vote
1answer
313 views

Make pylint tolerate Requests

When I test a module that uses Requests, pylint has a fit and claims that the various members of the Request object that I use do not exist. How can I fix this? I already run pylint with the ...
1
vote
1answer
90 views

pylint compliance for following code

I have following code from wesley chun's core python application programming book #!/usr/bin/env python """ tcp server """ from socket import AF_INET, SOCK_STREAM, socket from time import ctime ...
2
votes
1answer
189 views

Is there a plugin for pylint and pyflakes for nose tests?

I wonder if there is a nose plugin for pylint and/or pyflakes? Currently I am using coverage and tissue (PEP8) plugins for nose tests. Tnx in advance
1
vote
2answers
169 views

pylint raising R0801 for coding declaration lines

I have a Python project and am using the following line in some files: # coding: utf-8 When I use pylint, it complains with a R0801 warning saying that there are many files with this same code. ...

1 2 3 4