index
:
delta/python-packages/pylint.git
1.4.4
BioGeek/fix-typos-in-docstring-1418910993320
Edgemaster/pylintel-missing-dependency-on-tramp-1406657844364
The-Compiler/clarify-nodocstringrgx-change-in-changel-1432184214099
abc
all_false_positive
astng2
augassign_unused_argument
bare_except
catch
comparison-checker
confusing-with-statement
davidshen84/pylintel-edited-online-with-bitbucket--1422057628377
deprecated_methods
doc-emphasis-fix
docs-improvements-2
docs-improvements2
enhance-unpacking-checker
eval
exception_context
exec
exit_context
fahhem/faq-typo-fix-minimum-vs-maximum-1418754998842
fix-293
fix-362
fix-374
fix-582
fix-667
fix-685
fix-typo
fix_namedtuple
fix_rcfile_init_hook
fixes
format
frost-nzcr4/add-max_module_lines-to-warning-message--1410770503809
function_regexp
home-fix
hotfix/py26-compat
impl-299
indexing_exc
issue-398
issue155
issue234
issue_538_pt2
iter
iterable-checker
jfleach/removed-broken-link-and-replaced-with-th-1436980631932
line-ending-checks
list-index-checker
make
marcoyolos/tiny-1408025599195
master
membership-test-checker
metaclass_undefined
missing-spaces
multiple-imports-checker
no-logilab-common
non_unpackable
nonlocal
not-context-manager
open_mode
pylint-1.3
python_6
redundant-assert
remove-E0201-references
rename-F0401-to-E0401
reporter_message_fix
reversed
slots
source_view
spelling-checker
stable
support-editable-installs
test-fix-for-win
tests
tox_test_control
unichr
unpacking2
unused-import
w0401_package
win-ci-5
bitbucket.org: Obsolete (use python-packages/pylint-git)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
pylint
/
checkers
/
classes.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix new import related errors in pylint's codebase.
Claudiu Popa
2015-11-25
1
-2
/
+3
*
Fix instances of unneeded-not in pylint's codebase.
Claudiu Popa
2015-11-25
1
-1
/
+1
*
Cleanup pylint issues
Claudiu Popa
2015-11-21
1
-9
/
+6
*
Import has_known_bases and safe_infer back into pylint from astroid, until th...
Claudiu Popa
2015-11-20
1
-5
/
+5
*
Refactor non-iterator-returned checker to use safe inference
Dmitry Pribysh
2015-11-09
1
-8
/
+24
*
Reduce number of false positives emitted by non-iterator-returned checker
Dmitry Pribysh
2015-11-07
1
-4
/
+7
*
Separe the conditions to improve the readability of the code.
Claudiu Popa
2015-10-30
1
-0
/
+4
*
Prefer any instead of for.
Claudiu Popa
2015-10-30
1
-4
/
+3
*
Merged in lmedioni/pylint (pull request #295)
Claudiu Popa
2015-10-30
1
-3
/
+43
|
\
|
*
no-static/class-method: enhance the tests and fix the code accordingly
Laura M?dioni
2015-10-29
1
-4
/
+3
|
*
improve style and fix typos regarding no_class/staticmethod_decorator
Laura M?dioni
2015-10-29
1
-2
/
+3
|
*
check for static methods declared without a decorator
Laura M?dioni
2015-10-29
1
-5
/
+12
|
*
check for class methods declared without a decorator
Laura M?dioni
2015-10-29
1
-3
/
+36
*
|
Make iterable checker skip classes that are inferred to be abstract
fix-685
Dmitry Pribysh
2015-10-27
1
-10
/
+1
|
/
*
non-iterator-returned can detect classes with iterator-metaclasses.
Claudiu Popa
2015-10-20
1
-11
/
+27
*
Rename checking function for 'super()' call checking and update Changelog.
fix-667
Dmitry Pribysh
2015-10-18
1
-2
/
+2
*
Make `no-self-use` checker not throw a warning if method has a `super()` call.
Dmitry Pribysh
2015-10-17
1
-1
/
+10
*
Don't emit 'assigning-non-slot' for descriptors. Closes issue #652.
Claudiu Popa
2015-10-04
1
-0
/
+23
*
Use the new node names for the visit and leave methods
Claudiu Popa
2015-08-26
1
-7
/
+7
*
Update pylint to use the new astroid AST names and methods
Claudiu Popa
2015-08-25
1
-30
/
+28
*
Don't emit no-init if not all the bases from a class are known.
Claudiu Popa
2015-07-22
1
-1
/
+1
*
Use safe_infer and has_known_bases from astroid.helpers. Closes issue #593.
Claudiu Popa
2015-07-06
1
-3
/
+4
*
Detect a couple of objects which can't be base classes (bool, slice, range an...
Claudiu Popa
2015-06-25
1
-1
/
+8
*
Fix a false positive regarding staticmethods: they don't have an implicit arg...
Claudiu Popa
2015-06-15
1
-2
/
+1
*
Remove trailing whitespace.
Claudiu Popa
2015-06-14
1
-3
/
+3
*
arguments-differ understand differences between various type of functions.
Claudiu Popa
2015-06-14
1
-6
/
+32
*
Pylint understand super calls.
Claudiu Popa
2015-05-28
1
-0
/
+3
*
Fix some pylint warnings over pylint's codebase.
Claudiu Popa
2015-05-16
1
-3
/
+3
*
Remove trailing whitespaces.
Claudiu Popa
2015-05-14
1
-3
/
+3
*
Remove 'bad-context-manager' due to the inclusion of 'unexpected-special-meth...
Claudiu Popa
2015-05-14
1
-19
/
+2
*
Add a new warning 'unexpected-special-method-signature'.
Claudiu Popa
2015-05-14
1
-3
/
+58
*
Don't emit attribute-defined-outside-init and access-member-before-definition...
Claudiu Popa
2015-05-12
1
-1
/
+9
*
Cleanup.
Claudiu Popa
2015-05-11
1
-6
/
+6
*
Move non-iterator-returned to a new checker, SpecialMethodsChecker, which has...
Claudiu Popa
2015-05-10
1
-26
/
+46
*
Remove unused imports.
Claudiu Popa
2015-05-07
1
-1
/
+0
*
Make ignore-iface-methods a noop option, mark it as deprecated.
Claudiu Popa
2015-05-05
1
-15
/
+5
*
Remove the rest of interface checks.
Claudiu Popa
2015-05-05
1
-74
/
+4
*
Add two new warnings, duplicate-bases and inconsistent-mro.
Claudiu Popa
2015-05-03
1
-1
/
+21
*
Don't warn about no-self-use for builtin properties.
Claudiu Popa
2015-04-06
1
-1
/
+2
*
Add Changelog entry and cleanup after changeset 2307df9
Claudiu Popa
2015-03-31
1
-2
/
+0
*
Promote a couple of warnings to errors.
Claudiu Popa
2015-03-20
1
-2
/
+3
*
Fix a couple of doc warnings, use string continuation.
Claudiu Popa
2015-03-02
1
-43
/
+43
*
Move all package files to a pylint package.
Ionel Cristian Maries
2015-02-14
1
-0
/
+982