summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | Added check for redundant assert in unittestVlad Temian2014-11-221-6/+21
| | |/ | |/|
* | | Fix a false positive with invalid-slots-objects and unicode strings. Closes i...Claudiu Popa2015-01-033-1/+16
* | | Use a DeprecationWarning for ParseableTextReporter.Claudiu Popa2015-01-032-2/+14
* | | Update the examples to the new message format.Claudiu Popa2015-01-031-1/+3
* | | Close the streams in similar checker.Claudiu Popa2015-01-031-2/+6
* | | Use the new Module.stream, since Module.file_stream is deprecated.Claudiu Popa2015-01-036-32/+24
* | | Fix a false positive on Python 2 for raising-bad-type and tuples.Claudiu Popa2015-01-023-3/+86
* | | Cleanup lint.py.Claudiu Popa2015-01-022-109/+115
* | | Don't filter out builtins when checking for raising-non-exception.Claudiu Popa2015-01-023-12/+40
* | | Fix a false negative with raising-non-exception.Claudiu Popa2015-01-025-11/+38
* | | Add the name of the abstract class in abstract-class-instantiated message.Claudiu Popa2015-01-024-12/+16
* | | Small cleanup to exceptions checkerClaudiu Popa2015-01-021-4/+3
* | | The comment is not true anymore.Claudiu Popa2015-01-021-5/+0
* | | Small refactoring to exceptions checker.Claudiu Popa2015-01-021-13/+24
* | | Fix a false positive with catching-non-exception and tuples ofClaudiu Popa2014-12-294-27/+69
* | | Use a mro traversal for finding abstract methods. Closes issue #415.Claudiu Popa2014-12-2112-93/+299
* | | Merged in s0undt3ch/pylint/hotfix/py26-compat (pull request #211)Claudiu Popa2014-12-200-0/+0
|\ \ \
| * | | Close branch hotfix/py26-compathotfix/py26-compatClaudiu Popa2014-12-200-0/+0
* | | | Merged in BioGeek/pylint/BioGeek/fix-typos-in-docstring-1418910993320 (pull r...Claudiu Popa2014-12-181-1/+1
|\ \ \ \
| * | | | Fix typos in docstringBioGeek/fix-typos-in-docstring-1418910993320BioGeek2014-12-181-1/+1
|/ / / /
* | | | Merged in fahhem/pylint/fahhem/faq-typo-fix-minimum-vs-maximum-1418754998842 ...Claudiu Popa2014-12-161-1/+1
|\ \ \ \
| * | | | FAQ typo fix ("minimum" vs "maximum")fahhem/faq-typo-fix-minimum-vs-maximum-1418754998842fahhem2014-12-161-1/+1
|/ / / /
* | | | Proper abstract method lookup while checking for abstract-class-instantiated.Claudiu Popa2014-12-164-5/+88
* | | | Add a note regarding the support of <=Python 2.6.Claudiu Popa2014-12-152-2/+14
* | | | Fix typos in error messages.Claudiu Popa2014-12-151-2/+2
* | | | Update ChangeLogBrett Cannon2014-12-121-3/+6
* | | | Have the python3 checker warn for round() and input().Brett Cannon2014-12-122-4/+17
* | | | Minimize the except block, by catching only what will raise NoSuchArgumentError.Claudiu Popa2014-12-061-9/+11
* | | | Merged in cmin764/pylint/open_mode (pull request #204)Claudiu Popa2014-12-067-9/+118
|\ \ \ \
| * \ \ \ Mergeopen_modeCosmin Poieana2014-12-061-0/+2
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Check the return value of slots, it can be None.Claudiu Popa2014-12-051-0/+2
| * | | | Fix 2.x open mode check; Add more testsCosmin Poieana2014-12-055-2/+43
| * | | | Merge; Fix open mode bugCosmin Poieana2014-12-057-8/+76
| |\ \ \ \ |/ / / / /
| * | | | Merge; Fix according to reviewCosmin Poieana2014-11-307-8/+72
| |\ \ \ \
| | * \ \ \ MergeCosmin Poieana2014-11-221-1/+1
| | |\ \ \ \
| | * \ \ \ \ Fix opening mode check. Closes Issue #307Cosmin Poieana2014-11-227-7/+68
| | |\ \ \ \ \
| | | * | | | | Proper opening mode checking for filesCosmin Poieana2014-11-221-2/+42
| | | | |_|/ / | | | |/| | |
* | | | | | | Check the return of properties when checking for not-callable.Claudiu Popa2014-12-053-5/+59
* | | | | | | Merged in s0undt3ch/pylint/hotfix/py26-compat (pull request #206)Claudiu Popa2014-12-041-2/+2
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | |
| * | | | | | Fix typo.Pedro Algarvio2014-12-041-1/+1
| * | | | | | New style tuple syntax is only supported on Python >= 2.7Pedro Algarvio2014-11-281-2/+2
* | | | | | | Simplify _annotated_unpack_infer.Claudiu Popa2014-12-043-12/+14
* | | | | | | Simplify the code by using safe_infer.Claudiu Popa2014-12-041-14/+10
* | | | | | | Make some methods private.Claudiu Popa2014-12-041-4/+4
* | | | | | | Improve the reporting for dangerous-default-value.Claudiu Popa2014-12-034-13/+41
* | | | | | | Look only in the current function's scope for bad-super-call. Closes issue #403.Claudiu Popa2014-12-034-1/+29
| |/ / / / / |/| | | | |
* | | | | | Make dangerous-default-argument check resilient to inferred builtin calls for...Claudiu Popa2014-11-281-1/+4
|/ / / / /
* | | | | Merged in godfryd/pylint/issue-398 (pull request #205)Claudiu Popa2014-11-281-1/+1
|\ \ \ \ \
| * | | | | fixed reading list of ignored words for spelling checkerissue-398Michal Nowikowski2014-11-271-1/+1
|/ / / / /
* | | | | Use the new Module.close to close the file streams.Claudiu Popa2014-11-251-8/+2