summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added tag pylint-version-0.26.0 for changeset 562919d79decpylint-debian-version-0.26.0-1Sylvain Thénault2012-10-051-0/+1
|
* oops, drop extra backslashpylint-version-0.26.0Sylvain Thénault2012-10-051-1/+1
|
* oopsSylvain Thénault2012-10-051-1/+0
|
* rewrite bin script to use python3 ourselves, this is not done anymore by ↵Sylvain Thénault2012-10-051-4/+2
| | | | packaging tools
* use env for pyreverse as for othersSylvain Thénault2012-10-051-1/+1
|
* add trove classifier for python 3 compatSylvain Thénault2012-10-051-0/+2
|
* 0.26Sylvain Thénault2012-10-052-1/+7
|
* explicit trailing whitespace, avoid temptation to drop those (thx Martin)Sylvain Thénault2012-10-051-26/+26
|
* Add --ignore-imports option to similarity checking. Closes #106534.Ry4an Brase2012-09-295-61/+156
| | | | | | | | Additionally: - add access to existing --ignore-docstrings option to symilar command line - add access to new --ignore-imports option to symilar command line - add test for existing --ignore-docstring feature - add test for new --ignore-imports feature
* don't want to run a checker only because of a Fatal errorSylvain Thénault2012-09-202-10/+5
|
* Add name type in C0103 messageSylvain Thénault2012-09-204-15/+18
|
* integrate patch from Peter Hammond to check protocol completness and avoid ↵Peter Hammond2012-09-285-2/+108
| | | | false R0903. Closes #104420
* minor tweaks to previous changeset (custom reporter). Closes #105337Sylvain Thénault2012-09-201-4/+5
|
* Added the ability to specify reporter class name as report's 'output-format'.Kevin Jing Qiu2012-09-203-3/+25
| | | | | | This allows a custom reporter to be used to format reports. Backwards-compatibility is maintained, so a user can still specify the named reporters such as 'text' or 'parseable'.
* lint fixesSylvain Thénault2012-09-1913-50/+50
|
* stop using assert_, rather use assertTrue / assertFalseSylvain Thénault2012-09-191-55/+63
|
* Closes #104572: symbolic warning names in output (by Martin Pool)Martin Pool2012-09-1924-43/+278
| | | | triggered whatever the format using a command line option
* [format checker] check for anomalous backslash escape (new W1401, W1402). ↵Sylvain Thénault2012-09-196-4/+159
| | | | Closes #104571
* fix R0801 similarities bug. Closes #63424Anthony VEREZ2012-09-194-6/+7
|
* create a console_scripts entry point to be used by easy_install, buildout ↵Sylvain Thénault2012-09-1412-59/+123
| | | | | | and pip. Closes #103949 uniformize run interface and update licensing on the way
* drop useless attribute from variables checkerSylvain Thénault2012-09-191-5/+0
|
* white spaces cleanupSylvain Thénault2012-09-193-44/+43
|
* use .iter* version of dict methods when possibleSylvain Thénault2012-09-197-26/+26
|
* Fix false positive W0231 for missing call to object.__init__. Closes #103656FELD Boris2012-09-193-5/+16
|
* Add test and code for handling __all__ with pylint. Closes #4685.FELD Boris2012-09-194-5/+71
|
* Improve checking of metaclass methods's first arg. Closes #4014.FELD Boris2012-09-198-55/+123
| | | | | | * Add C0204 for __new__ method of metaclass. * Add valid-metaclass-classmethod-first-arg config option. * Move a test, improve it and fix another one.
* fix test broken by 27930e5ee87eSylvain Thénault2012-09-061-1/+1
|
* fix grammatical error for W0332 message. Closes #100654Sylvain Thénault2012-08-294-5/+9
|
* amend ChangeLogSylvain Thénault2012-08-291-0/+4
|
* Adds check for boolop being used as exception class. Closes #100707.Tim Hatch2012-08-294-0/+31
| | | | | | | | | | --- .../third_party/py/pylint/checkers/exceptions.py | 7 +++++++ .../third_party/py/pylint/test/input/func_w0711.py | 15 +++++++++++++++ .../py/pylint/test/messages/func_w0711.txt | 4 ++++ 3 files changed, 26 insertions(+), 0 deletions(-) create mode 100644 /test/input/func_w0711.py create mode 100644 /test/messages/func_w0711.txt
* pylint fixesSylvain Thénault2012-08-223-5/+2
|
* Call reporter.set_output before reporter.on_set_current_module in order to ↵FELD Boris2012-07-171-3/+3
| | | | ease reporter work
* Do not include tests files for installation in setup.py. Clean setup.py for ↵FELD Boris2012-07-261-8/+1
| | | | python3. Closes #72022. Closes #82417. Closes #76910.
* use lgc.compat to access builtins for cross-interpreters compatSylvain Thénault2012-07-241-4/+3
|
* Added tag pylint-debian-version-0.25.2-1 for changeset 1b744fb874a2Sylvain Thénault2012-07-181-0/+1
|
* Added tag pylint-version-0.25.2 for changeset 042861bd555apylint-debian-version-0.25.2-1Sylvain Thénault2012-07-181-0/+1
|
* 0.25.2pylint-version-0.25.2Sylvain Thénault2012-07-174-9/+21
|
* fix indentationSylvain Thénault2012-07-131-4/+4
|
* Fix checkers.utils for other implementations (use of __builtins__). Closes ↵FELD Boris2012-07-091-3/+3
| | | | #99139. Closes #89838. Theses fixes need fixes on logilab-astng and logilab-common
* Refactor test_func in order to extract common part for reutilization in ↵FELD Boris2012-07-046-255/+290
| | | | pylint-brain
* Fix tests which failed on tempfile file comparaison due to Mac OS X which ↵FELD Boris2012-06-071-0/+15
| | | | make /tmp a symlink to /private/tmp
* split test to isolate py 2.7 specific syntax and get tests back to green ↵Sylvain Thénault2012-06-074-11/+16
| | | | with py 2.5
* Closes #93591: Correctly emit W0623 on multiple assignment of unpackable ↵Torsten Marek2012-06-075-8/+40
| | | | | | | | | | | | | exceptions eg for code like try: ... except AnyException as (here, there): ... Instead of warning about redefining tuple, recurse into the tuple and check all names.
* Refactor _check_protected_attribute_access by extracting independent part in ↵Sylvain Thénault2012-06-072-10/+31
| | | | utils functions. Improve is_super_call docstring.
* Add checking for protected attribute assignement, closes #7394.Sylvain Thénault2012-06-074-25/+76
| | | | | Remove checking for protected attribute access via super(). Move common code for checking protected attribute accessing in a new function _check_protected_attribute_access.
* Doesn't check that overriden method signature match if it's a private ↵Sylvain Thénault2012-06-074-19/+59
| | | | method, closes #18772
* fix crash when using set in regexp for --generated-members option. Closes #88914Sylvain Thénault2012-05-213-2/+11
|
* fix gui reporter broken by addition of coloffset information. Closes #92584Sylvain Thénault2012-05-152-4/+9
|
* Make pythonpath behaviour closer to python's (closes #88218)JT Olds2012-05-151-1/+16
| | | | | | When pylint is called with a single filename as argument, walk its path backwards to find the first directory that doesn't have a __init__.py, and add that to sys.path instead of the cwd.
* Emit W0102 (dangerous default value) when sets are used as default arguments ↵Torsten Marek2012-05-154-0/+26
| | | | for functions. Closes #92911