summaryrefslogtreecommitdiff
path: root/pylint/test/unittest_checker_python3.py
Commit message (Expand)AuthorAgeFilesLines
* Added two new Python 3 porting checks, `exception-escape` and `comprehension-...Claudiu Popa2018-05-121-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-48/+2
* Add new check py3k invalid-unicode-literal. (#2068)Sushobhit2018-05-091-0/+3
* Rip invalid-raise-syntax, we already have old-raise-syntaxClaudiu Popa2018-04-181-19/+5
* 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
* Rip lambda paremeter unpacking, we already have parameter-unpackingClaudiu Popa2018-04-181-5/+0
* Added a new Python 2/3 check for invalid raise syntax.Claudiu Popa2018-04-171-0/+19
* Added a new Python 2/3 check for invalid lambda parameter list, `lambda-param...Claudiu Popa2018-04-171-0/+5
* 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
* 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
* Issue a warning on methods implementing `__rdiv__` as well.Roy Williams2016-10-221-0/+3
* Add a warning when declaring `__div__` or `__idiv__` in Python 2. (#1121)Roy Williams2016-10-051-0/+6
* Add a Python 3 warning for implementing `__eq__` without also implementing `_...Roy Williams2016-09-261-0/+31
* Even more granular copyrights (thanks to copyrite)Claudiu Popa2016-07-231-2/+3
* Keep a consistent copyright notice across the board.Claudiu Popa2016-07-191-0/+2
* Use astroid.extract_node instead of test_utils.extract_nodeClaudiu Popa2016-06-291-39/+38
* Add the new shorter license header, including to missing files. Close #894.Claudiu Popa2016-06-011-13/+3
* Use the new node names for the visit and leave methodsClaudiu Popa2015-08-261-19/+19
* Update pylint to use the new astroid.parse, not testutils.build_module.Claudiu Popa2015-07-131-10/+10
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-251-0/+10
* Remove trailing whitespace.Claudiu Popa2015-05-071-1/+1
* Add a new warning for the Python 3 porting checker, 'using-cmp-argument'.Claudiu Popa2015-02-281-0/+13
* Don't emit not-iterating warnings when the builtin is used in an unpacking.Claudiu Popa2015-02-211-0/+18