Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove abstract-class-little-used warning, since it doesn't add any real value. | Claudiu Popa | 2015-03-11 | 9 | -29/+7 | |
| | ||||||
* | Remove the star-args error. | Claudiu Popa | 2015-03-11 | 7 | -35/+9 | |
| | | | | | This warning is removed because it doesn't add any real value and it's not a problem if someone uses unpacking in their code. | |||||
* | Make the --py3k flag commutative with the -E flag. | Claudiu Popa | 2015-02-28 | 2 | -1/+60 | |
| | | | | | Also, this patch fixes the leaks of error messages from the Python 3 checker when the errors mode was activated. Closes issue #437. | |||||
* | Add a new warning for the Python 3 porting checker, 'using-cmp-argument'. | Claudiu Popa | 2015-02-28 | 1 | -0/+13 | |
| | | | | | This warning is emitted when the `cmp` argument for the `list.sort` or `sorted builtin` is encountered, since it was removed in Python 3. This is part of the issue #376. | |||||
* | Add missing call to unittest.main() in unittest_checker_exceptions.py | Pavel Roskin | 2015-02-26 | 1 | -0/+4 | |
| | ||||||
* | Remove excessive quotes in docstrings | Pavel Roskin | 2015-02-26 | 1 | -1/+1 | |
| | ||||||
* | Support for combining the Python 3 checker mode with the --jobs flag. | Claudiu Popa | 2015-02-24 | 1 | -0/+6 | |
| | | | | | | | This patch makes sure that --py3k and --jobs flags can be combined together. It introduces a new method in lint.PyLinter, called set_python3_porting_mode, which will setup a new flag inside the linter, passed down to child linters when they are created. Closes issue #467. | |||||
* | Fix #299: Warn about `type(x) is/== Y`impl-299 | Chris Rebert | 2015-02-21 | 2 | -0/+94 | |
| | ||||||
* | Don't emit not-iterating warnings when the builtin is used in an unpacking. | Claudiu Popa | 2015-02-21 | 1 | -0/+18 | |
| | ||||||
* | Fix a false positive with dict and not-iterating warnings. | Claudiu Popa | 2015-02-21 | 1 | -3/+7 | |
| | | | | | | dict accepts iterators, as much as set and list does. This patch fixes this and adds tests for the other callables for which we shouldn't emit. | |||||
* | Remove visit_discard for map-builtin-not-iterating, since it is already ↵ | Claudiu Popa | 2015-02-21 | 1 | -10/+0 | |
| | | | | caught by visit_callfunc. | |||||
* | Use __() in tests to extract the node instead of #@ plus some fidgeting | Brett Cannon | 2015-02-20 | 1 | -7/+2 | |
| | ||||||
* | merge with default | Brett Cannon | 2015-02-20 | 1 | -10/+120 | |
| | ||||||
* | The HTML output accepts the `--msg-template` option. | Claudiu Popa | 2015-02-17 | 1 | -0/+33 | |
| | | | | Patch by Daniel Goldsmith. Closes issue #135. | |||||
* | Move all package files to a pylint package. | Ionel Cristian Maries | 2015-02-14 | 568 | -0/+15757 | |