summaryrefslogtreecommitdiff
path: root/pylint/test/unittest_checker_python3.py
Commit message (Expand)AuthorAgeFilesLines
* Don't emit ``*-not-iterating`` checks for builtins consumed by ``itertools``Claudiu Popa2019-02-111-0/+17
* Exempt starred unpacking from ``*-not-iterating`` Python 3 checksClaudiu Popa2018-12-181-0/+7
* Exempt ``yield from`` from ``*-not-iterating`` Python 3 checks.Claudiu Popa2018-12-141-0/+7
* Fix zip-builtin-not-iterating false positive with OrderedDict (#2634)sbagan2018-12-101-0/+1
* dict-iter-method and dict-view-method no longer determines if the operand is ...Claudiu Popa2018-10-021-12/+14
* Reformat the code with blackClaudiu Popa2018-09-171-286/+429
* Remove wrong modules from 'bad-python3-import' (#2454)Aivar Annamaa2018-09-091-0/+18
* `chain.from_iterable` no longer emits `dict-{}-not-iterating` when dealing wi...Claudiu Popa2018-07-241-0/+5
* Update copyright noticesClaudiu Popa2018-07-151-1/+3
* [].extend and similar builtin operations don't emit `dict-*-not-iterating` wi...Claudiu Popa2018-06-201-0/+3
* `in` is considered iterating context for some of the Python 3 porting checkersClaudiu Popa2018-06-141-0/+1
* Don't include excepthandlers that don't have a name when looking for exceptio...Claudiu Popa2018-05-231-0/+5
* Rewrite the comprehension-escape and exception-escape to work only on the cor...Claudiu Popa2018-05-231-15/+17
* min() and max() accept iterators (#2138)Anthony Sottile2018-05-231-0/+2
* Fix the dict iterating texts by adding the parens. Thanks @asottlileClaudiu Popa2018-05-231-5/+5
* pyupgrade (#2136)Anthony Sottile2018-05-221-2/+2
* Use last previous assignment for comprehension-escape (#2131)Anthony Sottile2018-05-221-0/+9
* Added two new Python 3 porting checks, `exception-escape` and `comprehension-...Claudiu Popa2018-05-131-0/+35
* Emit a warning when sys.exc_clear is accessedClaudiu Popa2018-05-111-0/+9
* Emit a warning when .xreadlines() is accessedClaudiu Popa2018-05-111-0/+8
* The Python 3 porting checker can run with Python 3 as wellClaudiu Popa2018-05-101-47/+0
* Handle dict subclasses for dict-not-iterating checksClaudiu Popa2018-04-181-2/+19
* defaultdict and subclasses of dict are now handled for dict-iter-* checksClaudiu Popa2018-04-181-8/+24
* Added a new Python 2/3 check for accessing removed urllib functionsClaudiu Popa2018-04-121-0/+15
* Added a new Python 2/3 check for accessing `operator.div`, which is removed i...Claudiu Popa2018-04-121-0/+10
* Catch string.letters with the Python 3 porting checkerClaudiu Popa2018-04-051-1/+1
* Spelling fixesVille Skyttä2018-01-301-1/+1
* Regenerate copyright noticesClaudiu Popa2017-12-151-1/+8
* Add missing encoding pragma to test fileClaudiu Popa2017-12-151-0/+1
* Remove extraneous coding headerClaudiu Popa2017-11-111-1/+0
* Do not warn no-absolute-import multiple times per file (#1725)Daniel Miller2017-11-111-1/+9
* A map enclosed by a filter call does not trigger map-builtin-not-iterating on...Claudiu Popa2017-09-191-0/+6
* Fix a false positive with bad-python3-import on relative importsClaudiu Popa2017-08-071-0/+12
* Added a new Python 3 check, non-ascii-bytes-literals. Close #1545Claudiu Popa2017-07-231-0/+8
* Added a couple of new Python 3 checks for accessing dict methods in non-itera...Claudiu Popa2017-07-211-0/+32
* Make functions and classes from testutils private. Close #1438Claudiu Popa2017-07-081-2/+2
* Implement a Python3 warning for declaring a method `next` method that would i...Roy Williams2017-06-021-0/+52
* Add a warning for bad imports from the types module (#1501)Roy Williams2017-05-291-0/+10
* Add a warning for accessing itertools functions that have been removed. (#1500)Roy Williams2017-05-251-0/+10
* Respect checks for Python 2 (#1196)Roy Williams2017-01-031-0/+63
* Remove pytest.main calls.Derek Gustafson2016-12-071-4/+0
* Reduce dependency on unittestDerek Gustafson2016-12-061-9/+9
* Only check system modules during imports.Roy Williams2016-12-061-0/+9
* Add confidence to error messages about `str.translate` and `str.encode/decode...Roy Williams2016-12-051-2/+17
* Add a Python 3 checker for finding deprecated calls to `str.translate`. (#1188)Roy Williams2016-12-051-0/+44
* Add Python 3 checker for accessing deprecated functions on the `string` modul...Roy Williams2016-12-021-6/+60
* Add a Python 3 Checker to find invalid imports in Python 3 (#1182)Roy Williams2016-11-301-0/+83
* Add a Python 3 warning about accessing sys.maxint (#1180)Roy Williams2016-11-291-0/+18
* Add a Python 3 checker for calls to `encode` or `decode` with non-text codecs...Roy Williams2016-11-231-0/+32
* Add a checker for accessing `Exception.message` in Python 2. (#1147)Roy Williams2016-10-311-0/+20