summaryrefslogtreecommitdiff
path: root/pylint/checkers/python3.py
Commit message (Collapse)AuthorAgeFilesLines
* issue-422 solved some pylint warnings when running pylint on pylint code baseSimu Toni2015-03-281-1/+1
|
* Fix a couple of doc warnings, use string continuation.Claudiu Popa2015-03-021-3/+3
|
* Add a new warning for the Python 3 porting checker, 'using-cmp-argument'.Claudiu Popa2015-02-281-0/+39
| | | | | 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.
* Backed out changeset c1f2f0c187b0Claudiu Popa2015-02-271-0/+5
| | | | This is actually used by the test, which aren't calling visit_module.
* Remove Python3Checker constructor, visit_module() does all its jobPavel Roskin2015-02-261-5/+0
|
* Clear Python3Checker state on every new modulePavel Roskin2015-02-251-0/+5
| | | | | This fixes detection of missing __future__ imports when processing multiple files.
* Don't emit not-iterating warnings when the builtin is used in an unpacking.Claudiu Popa2015-02-211-0/+6
|
* Fix a false positive with dict and not-iterating warnings.Claudiu Popa2015-02-211-1/+1
| | | | | | 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 Popa2015-02-211-9/+0
| | | | caught by visit_callfunc.
* Set old_names for map-builtin-not-iterating since it replaced ↵Brett Cannon2015-02-201-2/+3
| | | | implicit-map-evaluation
* merge with defaultBrett Cannon2015-02-201-28/+79
|
* Move all package files to a pylint package.Ionel Cristian Maries2015-02-141-0/+488