summaryrefslogtreecommitdiff
path: root/test/input
Commit message (Collapse)AuthorAgeFilesLines
* Implement confidence levels.Torsten Marek2014-07-241-69/+0
| | | | | | | - attach confidence levels to a number of messages - include confidence levels in the message object - if the confidence of a message is not HIGH or UNDEFINED, include it in the test output.
* Fix test failures.cpopa2014-08-172-2/+2
|
* Detect calls of the parent's __init__, through a binded super() call.cpopa2014-08-161-0/+14
|
* Don't emit 'protected-access' if the attribute is accessed using a property ↵cpopa2014-08-141-0/+1
| | | | defined at the class level.
* Look in the metaclass, if defined, for members not found in the current ↵cpopa2014-08-141-32/+0
| | | | class. Closes issue #306.
* fixme regex handles comments without spaces after the hash. Closes issue #311.cpopa2014-08-111-0/+1
|
* Don't emit 'import-error' if an import was protected by a try-except, which ↵cpopa2014-08-081-4/+0
| | | | excepted ImportError.
* Don't emit 'attribute-defined-outside-init' if the attribute was set by a ↵cpopa2014-08-041-1/+33
| | | | function call in a defining method. Closes issue #192.
* Merged logilab/pylint into defaultClaudiu Popa2014-07-315-148/+0
|\
| * Converted more test cases.Torsten Marek2014-07-305-148/+0
| |
* | Handle 'too-few-format-args' or 'too-many-format-args' for format strings ↵cpopa2014-07-311-88/+0
|/ | | | with both named and positional fields. Closes issue #286.
* Remove old testcase that has already been converted.Torsten Marek2014-07-301-56/+0
|
* Converted and merge test cases.Torsten Marek2014-07-303-144/+0
|
* Remove testcases only for Python < 2.7.Torsten Marek2014-07-301-102/+0
|
* Fix mixed line endings in 3.4-specific test case.Torsten Marek2014-07-301-10/+10
|
* Merged in godfryd/pylint/line-ending-checks (pull request #133)Torsten Marek2014-07-304-125/+124
|\
| * mergeMichal Nowikowski2014-07-304-125/+124
| |\
| | * Merged default into line-ending-checksMichal Nowikowski2014-07-294-125/+124
| | |\
| | | * Fixed tests for line endings checks.Michal Nowikowski2014-07-281-33/+33
| | | |
| | | * mergeMichal Nowikowski2014-07-2813-435/+0
| | | |\
| | | * | Fixed tests for line endings checker.Michal Nowikowski2014-07-263-92/+91
| | | | |
* | | | | Merged in carlio/pylint (pull request #138)Claudiu Popa2014-07-301-0/+25
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | Don't evaluate dangerous-default-value argument values
| * | | | Merged logilab/pylint into defaultcarlio2014-07-291-0/+25
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | [refs #282] dangerous-default-values are now not evaluated to get their ↵carl2014-07-271-0/+25
| | |/ / | | | | | | | | | | | | type/name, as this would dump the entire contents of the list or dictionary into the error message. This is not desirable for large defaults, or for sensitive information such as os.environ.
* | | | More test cases moved to the new test framework.Torsten Marek2014-07-275-79/+0
| | | |
* | | | Proper handle class level scope for lambdas.cpopa2014-07-291-15/+0
| | | |
* | | | Fix a false positive with string formatting checker, when using keyword ↵cpopa2014-07-291-0/+8
|/ / / | | | | | | | | | argument packing. Closes issue #288.
* | | Fix a false positive with string formatting checker, when encountering a ↵cpopa2014-07-291-0/+2
| |/ |/| | | | | string which uses only position-based arguments. Closes issue #285.
* | Converted more test cases to the new test framework.Torsten Marek2014-07-2613-435/+0
|/
* Don't emit 'missing-docstring' when the actual docstring uses `.format`. ↵cpopa2014-07-251-73/+0
| | | | Closes issue #281.
* Port more testcases to the new framework.Torsten Marek2014-07-254-357/+0
|
* Don't emit 'unnecessary-lambda' if the body of the lambda call contains call ↵cpopa2014-07-251-40/+0
| | | | chaining. Closes issue #243.
* Porting tests over to the new framework.Torsten Marek2014-07-254-272/+0
|
* Don't emit hidden-method message when the attribute has been monkey-patched,Sylvain Th?nault2014-07-251-17/+0
| | | | | | you're on your own when you do that Closes http://www.logilab.org/ticket/36653
* Extend the test case for metaclass invocation detection.Torsten Marek2014-07-251-2/+2
|
* Make pylint compatible with Python 2.5 again, and make all the tests pass ↵Torsten Marek2014-07-249-224/+8
| | | | (Closes: #278).
* Allow implicitly concatenated strings to align with the previous string part.Torsten Marek2014-07-251-0/+4
|
* Fix more edge cases in the cell-var-from-loop warning (Closes: #233).Torsten Marek2014-07-251-0/+18
|
* Added a new test suite for functional tests.Torsten Marek2014-07-244-40/+0
| | | | | | Main changes: - version restrictions are not encoded in file names any more, but in option files - expected messages are annotated in the test files directly
* Add a test case for #205.Torsten Marek2014-07-241-0/+11
|
* Don't emit 'pointless-string-statement' for attribute docstrings. Closes ↵cpopa2014-07-241-1/+31
| | | | issue #193.
* Merged in PCManticore/pylint/metaclass_undefined (pull request #111)Claudiu Popa2014-07-231-0/+14
|\ | | | | | | Emit 'undefined-variable' for undefined names used as metaclasses with Python 3 `metaclass=` syntax.
| * Don't emit 'unused-variable' when assigning to a nonlocal. Closes issue #275.cpopa2014-07-231-0/+14
| |
* | Merge with default.cpopa2014-07-2219-11/+565
|\ \ | |/
| * Definition order is considered for classes, function arguments and ↵cpopa2014-07-212-2/+56
| | | | | | | | annotations. Closes issue #257.
| * Fix an 'unused-variable' false positive, where the variable is assigned ↵cpopa2014-07-171-1/+17
| | | | | | | | through an import. Closes issue #196.
| * Fix test for Python 2.cpopa2014-07-101-1/+1
| |
| * Add 'assigning-non-slot' warning, which detects assignments to attributes ↵cpopa2014-07-101-0/+56
| | | | | | | | not defined in slots.
| * Fix a false positive regarding W0511. Closes issue #149.Alexandru Coman2014-07-091-0/+3
| |
| * Fixing Issue #149 (W0511 false positive)Alexandru Coman2014-07-091-2/+4
| |