summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Use a context manager for fake home directories.home-fixFlorian Bruhin2015-07-251-37/+27
* Fix tests when $HOME is unset in the environment.Florian Bruhin2015-07-251-6/+15
* Don't emit no-init if not all the bases from a class are known.Claudiu Popa2015-07-223-3/+10
* Remove unused variable.Claudiu Popa2015-07-161-1/+0
* Fix a typo.Claudiu Popa2015-07-161-1/+1
* Merged in jfleach/removed-broken-link-and-replaced-with-th-1436980631932 (pul...John Leach2015-07-150-0/+0
|\
* | Close branch jfleach/removed-broken-link-and-replaced-with-th-1436980631932jfleach/removed-broken-link-and-replaced-with-th-1436980631932John Leach2015-07-150-0/+0
* | Removed broken link and replaced with the logilab-common URL.John Leach2015-07-151-1/+1
|/
* Improve detection of relative imports in non-packages, as well as importing m...Claudiu Popa2015-07-149-9/+39
* Get the ignored modules only once and save the result in the imports checker.Claudiu Popa2015-07-141-3/+4
* Make a test less stricter by checking that only one message line is expected.Claudiu Popa2015-07-141-7/+2
* Cleanup some tests.Claudiu Popa2015-07-133-16/+35
* Update pylint to use the new astroid.parse, not testutils.build_module.Claudiu Popa2015-07-138-22/+29
* Fix the previous commit, only ignored-modules should use patterns, not ignore...Claudiu Popa2015-07-083-37/+62
* ignored-classes option can work with qualified names, as well as with Unix pa...Claudiu Popa2015-07-074-10/+71
* Remove trailing whitespace.Claudiu Popa2015-07-061-1/+1
* Fix a not-context-manager false positive.Claudiu Popa2015-07-063-5/+62
* Use safe_infer and has_known_bases from astroid.helpers. Closes issue #593.Claudiu Popa2015-07-0610-86/+61
* We understand namedtuple._replace properly (in a static analysis sense of cou...Claudiu Popa2015-07-061-2/+1
* Add a new error, 'nonlocal-and-global'.Claudiu Popa2015-07-065-1/+40
* Simplify error_of_type by using ExceptHandler.catch.Claudiu Popa2015-07-052-18/+4
* Enable misplaced-future for Python 3. Closes issue #580.Claudiu Popa2015-07-036-6/+13
* Ignore mixin classes when emitting not-context-manager, to avoid false positi...Claudiu Popa2015-07-032-0/+17
* Fix failing test, due to how tox (or drone.io) works: there are multiple copi...Claudiu Popa2015-07-031-10/+2
* Fix bad whitespace.Claudiu Popa2015-07-031-1/+1
* New imported features from astroid into pyreverse.Claudiu Popa2015-07-037-21/+199
* Remove a couple of faulty testsClaudiu Popa2015-07-023-16/+6
* Disable for unsupported-binary-operationClaudiu Popa2015-07-023-2/+6
* Stop using logilab.common.__pkginfo__Julien Cristau2015-06-301-1/+1
* Add test for issue #523, which was solved in astroid. Closes issue #523.Claudiu Popa2015-06-302-1/+16
* Add a new error, 'unsupported-binary-operation'.Claudiu Popa2015-06-307-12/+116
* Merged in noamraph/pylint/rename-F0401-to-E0401 (pull request #256)Claudiu Popa2015-06-294-8/+8
|\
| * Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorrename-F0401-to-E0401Noam Yorav-Raphael2015-06-294-8/+8
|/
* Add tests for understanding constructors after a type() call.Claudiu Popa2015-06-272-1/+19
* Move the property into a private function and call it in Checker.open.Claudiu Popa2015-06-261-10/+12
* Add tests for checking that calling constructors from class methods with inva...Claudiu Popa2015-06-262-0/+24
* Remove deque specialized code, since it is already handled by astroid.Claudiu Popa2015-06-261-5/+0
* Verify explicitly that a class is not a known exception class.Claudiu Popa2015-06-263-3/+34
* Add a new error, 'star-needs-assignment-target'.Claudiu Popa2015-06-265-2/+28
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-253-1/+24
* Detect a couple of objects which can't be base classes (bool, slice, range an...Claudiu Popa2015-06-254-2/+32
* Add a new error, 'invalid-star-assignment-target'.Claudiu Popa2015-06-255-1/+22
* Add a new error, 'too-many-star-expressions'.Claudiu Popa2015-06-255-0/+22
* yield-outside-func is also emitted for `yield from`.Claudiu Popa2015-06-255-2/+18
* Add tests for checking the ability to understand one-argument type builtin.Claudiu Popa2015-06-242-2/+8
* Disable not-callable because NotImplemented is inferred correctly now (and we...Claudiu Popa2015-06-231-1/+1
* Add the new __matmul__ and __rmatmul__ dunder methods to the list of known sp...Claudiu Popa2015-06-211-1/+2
* Move the code which checks undefined-all-variable into a new private function.Claudiu Popa2015-06-201-40/+47
* Don't emit undefined-all-variable for nodes which can't be inferred (which re...Claudiu Popa2015-06-206-10/+14
* Don't emit not-context-manager for instances with unknown bases.Claudiu Popa2015-06-202-1/+13