| Commit message (Expand) | Author | Age | Files | Lines |
* | Added two new Python 3 porting checks, `exception-escape` and `comprehension-... | Claudiu Popa | 2018-05-12 | 1 | -0/+35 |
* | Emit a warning when sys.exc_clear is accessed | Claudiu Popa | 2018-05-11 | 1 | -0/+9 |
* | Emit a warning when .xreadlines() is accessed | Claudiu Popa | 2018-05-11 | 1 | -0/+8 |
* | The Python 3 porting checker can run with Python 3 as well | Claudiu Popa | 2018-05-10 | 1 | -48/+2 |
* | Add new check py3k invalid-unicode-literal. (#2068) | Sushobhit | 2018-05-09 | 1 | -0/+3 |
* | Rip invalid-raise-syntax, we already have old-raise-syntax | Claudiu Popa | 2018-04-18 | 1 | -19/+5 |
* | Handle dict subclasses for dict-not-iterating checks | Claudiu Popa | 2018-04-18 | 1 | -2/+19 |
* | defaultdict and subclasses of dict are now handled for dict-iter-* checks | Claudiu Popa | 2018-04-18 | 1 | -8/+24 |
* | Rip lambda paremeter unpacking, we already have parameter-unpacking | Claudiu Popa | 2018-04-18 | 1 | -5/+0 |
* | Added a new Python 2/3 check for invalid raise syntax. | Claudiu Popa | 2018-04-17 | 1 | -0/+19 |
* | Added a new Python 2/3 check for invalid lambda parameter list, `lambda-param... | Claudiu Popa | 2018-04-17 | 1 | -0/+5 |
* | Added a new Python 2/3 check for accessing removed urllib functions | Claudiu Popa | 2018-04-12 | 1 | -0/+15 |
* | Added a new Python 2/3 check for accessing `operator.div`, which is removed i... | Claudiu Popa | 2018-04-12 | 1 | -0/+10 |
* | Catch string.letters with the Python 3 porting checker | Claudiu Popa | 2018-04-05 | 1 | -1/+1 |
* | Regenerate copyright notices | Claudiu Popa | 2017-12-15 | 1 | -1/+8 |
* | Add missing encoding pragma to test file | Claudiu Popa | 2017-12-15 | 1 | -0/+1 |
* | Remove extraneous coding header | Claudiu Popa | 2017-11-11 | 1 | -1/+0 |
* | Do not warn no-absolute-import multiple times per file (#1725) | Daniel Miller | 2017-11-11 | 1 | -1/+9 |
* | A map enclosed by a filter call does not trigger map-builtin-not-iterating on... | Claudiu Popa | 2017-09-19 | 1 | -0/+6 |
* | Fix a false positive with bad-python3-import on relative imports | Claudiu Popa | 2017-08-07 | 1 | -0/+12 |
* | Added a new Python 3 check, non-ascii-bytes-literals. Close #1545 | Claudiu Popa | 2017-07-23 | 1 | -0/+8 |
* | Added a couple of new Python 3 checks for accessing dict methods in non-itera... | Claudiu Popa | 2017-07-21 | 1 | -0/+32 |
* | Make functions and classes from testutils private. Close #1438 | Claudiu Popa | 2017-07-08 | 1 | -2/+2 |
* | Implement a Python3 warning for declaring a method `next` method that would i... | Roy Williams | 2017-06-02 | 1 | -0/+52 |
* | Add a warning for bad imports from the types module (#1501) | Roy Williams | 2017-05-29 | 1 | -0/+10 |
* | Add a warning for accessing itertools functions that have been removed. (#1500) | Roy Williams | 2017-05-25 | 1 | -0/+10 |
* | Respect checks for Python 2 (#1196) | Roy Williams | 2017-01-03 | 1 | -0/+63 |
* | Remove pytest.main calls. | Derek Gustafson | 2016-12-07 | 1 | -4/+0 |
* | Reduce dependency on unittest | Derek Gustafson | 2016-12-06 | 1 | -9/+9 |
* | Only check system modules during imports. | Roy Williams | 2016-12-06 | 1 | -0/+9 |
* | Add confidence to error messages about `str.translate` and `str.encode/decode... | Roy Williams | 2016-12-05 | 1 | -2/+17 |
* | Add a Python 3 checker for finding deprecated calls to `str.translate`. (#1188) | Roy Williams | 2016-12-05 | 1 | -0/+44 |
* | Add Python 3 checker for accessing deprecated functions on the `string` modul... | Roy Williams | 2016-12-02 | 1 | -6/+60 |
* | Add a Python 3 Checker to find invalid imports in Python 3 (#1182) | Roy Williams | 2016-11-30 | 1 | -0/+83 |
* | Add a Python 3 warning about accessing sys.maxint (#1180) | Roy Williams | 2016-11-29 | 1 | -0/+18 |
* | Add a Python 3 checker for calls to `encode` or `decode` with non-text codecs... | Roy Williams | 2016-11-23 | 1 | -0/+32 |
* | Add a checker for accessing `Exception.message` in Python 2. (#1147) | Roy Williams | 2016-10-31 | 1 | -0/+20 |
* | Issue a warning on methods implementing `__rdiv__` as well. | Roy Williams | 2016-10-22 | 1 | -0/+3 |
* | Add a warning when declaring `__div__` or `__idiv__` in Python 2. (#1121) | Roy Williams | 2016-10-05 | 1 | -0/+6 |
* | Add a Python 3 warning for implementing `__eq__` without also implementing `_... | Roy Williams | 2016-09-26 | 1 | -0/+31 |
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-23 | 1 | -2/+3 |
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
* | Use astroid.extract_node instead of test_utils.extract_node | Claudiu Popa | 2016-06-29 | 1 | -39/+38 |
* | Add the new shorter license header, including to missing files. Close #894. | Claudiu Popa | 2016-06-01 | 1 | -13/+3 |
* | Use the new node names for the visit and leave methods | Claudiu Popa | 2015-08-26 | 1 | -19/+19 |
* | Update pylint to use the new astroid.parse, not testutils.build_module. | Claudiu Popa | 2015-07-13 | 1 | -10/+10 |
* | Add a new error for the Python 3 porting checker, `import-star-module-level`. | Claudiu Popa | 2015-06-25 | 1 | -0/+10 |
* | Remove trailing whitespace. | Claudiu Popa | 2015-05-07 | 1 | -1/+1 |
* | Add a new warning for the Python 3 porting checker, 'using-cmp-argument'. | Claudiu Popa | 2015-02-28 | 1 | -0/+13 |
* | Don't emit not-iterating warnings when the builtin is used in an unpacking. | Claudiu Popa | 2015-02-21 | 1 | -0/+18 |