| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change basestring to six.string_types | Brett Cannon | 2014-08-29 | 4 | -6/+12 |
| * | Fix a incorrect use of sys.maxint by using sys.maxsize | Brett Cannon | 2014-08-29 | 1 | -1/+1 |
| * | Wrap dict.items() et. al. in list() | Brett Cannon | 2014-08-29 | 1 | -1/+2 |
| * | Don't use itertools.izip | Brett Cannon | 2014-08-29 | 1 | -2/+3 |
| * | Don't call unicode() directly | Brett Cannon | 2014-08-29 | 1 | -1/+2 |
| * | Modernize to the point of working for Python 2.7 still | Brett Cannon | 2014-08-29 | 12 | -56/+67 |
| * | Fix a false positive with 'too-many-format-args', when the format string cont... | cpopa | 2014-08-27 | 1 | -8/+2 |
| * | Move fix code into a separate private function, _fix_dot_import. | cpopa | 2014-08-24 | 1 | -30/+33 |
| * | Merged logilab/pylint into default | Claudiu Popa | 2014-08-23 | 1 | -1/+2 |
| |\ |
|
| | * | Fix a crash which ocurred while checking for 'method-hidden', when the parent... | cpopa | 2014-08-23 | 1 | -1/+2 |
| * | | Notes (TODO, XXX etc) are now searched for using a simple `in` before resorti... | carl | 2014-08-21 | 1 | -0/+11 |
| |/ |
|
| * | Set the maxversion to 3.5 for boolean-datetime. | cpopa | 2014-08-19 | 1 | -1/+2 |
| * | Add a new warning, 'boolean-datetime', emitted when an instance of 'datetime.... | cpopa | 2014-08-19 | 1 | -0/+37 |
| * | Some work on making pylint work on Python 3 without 2to3. | Torsten Marek | 2014-08-16 | 1 | -1/+1 |
| * | Implement confidence levels. | Torsten Marek | 2014-07-24 | 7 | -46/+95 |
| * | Change the multi-style name checker from first-style-wins to majority-style-w... | Torsten Marek | 2014-07-24 | 1 | -10/+34 |
| * | Check if the instance inherits from a standard exception before unproxying. | cpopa | 2014-08-18 | 1 | -1/+1 |
| * | Unproxy the infered instances. | cpopa | 2014-08-18 | 1 | -0/+2 |
| * | Backout changeset. | cpopa | 2014-08-18 | 1 | -1/+0 |
| * | Backout changeset. | cpopa | 2014-08-18 | 1 | -1/+1 |
| * | Backed out changeset ff26eefc7e0c | cpopa | 2014-08-18 | 1 | -1/+1 |
| * | Debug. | cpopa | 2014-08-18 | 1 | -1/+1 |
| * | Uh, drone.io. | cpopa | 2014-08-18 | 1 | -1/+1 |
| * | Add debug code for drone.io. | cpopa | 2014-08-18 | 1 | -0/+1 |
| * | Emit 'catching-non-exception' for non-class nodes. Closes issue #303. | cpopa | 2014-08-18 | 1 | -6/+57 |
| * | Revert change from 3b748b4: emit old-style-classes only for classes without b... | cpopa | 2014-08-18 | 1 | -3/+4 |
| * | Check that a class has an explicitly defined metaclass before emitting 'old-s... | cpopa | 2014-08-17 | 1 | -5/+5 |
| * | Detect calls of the parent's __init__, through a binded super() call. | cpopa | 2014-08-16 | 1 | -0/+11 |
| * | Don't emit 'protected-access' if the attribute is accessed using a property d... | cpopa | 2014-08-14 | 1 | -1/+18 |
| * | Look in the metaclass, if defined, for members not found in the current class... | cpopa | 2014-08-14 | 1 | -0/+14 |
| * | Don't emit 'unused-import' when a special object is imported (__all__, __doc_... | cpopa | 2014-08-11 | 1 | -0/+12 |
| * | fixme regex handles comments without spaces after the hash. Closes issue #311. | cpopa | 2014-08-11 | 1 | -1/+1 |
| * | Fix a false positive with 'too-few-format-args', when the format strings cont... | cpopa | 2014-08-11 | 1 | -3/+3 |
| * | Don't count branches from nested functions. | cpopa | 2014-08-11 | 1 | -16/+12 |
| * | Don't emit 'invalid-name' when assigning a name in an ImportError handler. Cl... | cpopa | 2014-08-09 | 3 | -23/+56 |
| * | Fix an 'unused-import' false positive, when the error was emitted for all the... | cpopa | 2014-08-09 | 1 | -5/+13 |
| * | Check only if the infered node is a class. | cpopa | 2014-08-08 | 1 | -4/+2 |
| * | Don't emit 'import-error' if an import was protected by a try-except, which e... | cpopa | 2014-08-08 | 1 | -2/+32 |
| * | Revert change. | cpopa | 2014-08-08 | 1 | -1/+1 |
| * | Cleanup. | cpopa | 2014-08-08 | 1 | -9/+14 |
| * | Merge. | cpopa | 2014-08-08 | 1 | -9/+49 |
| |\ |
|
| | * | mergefix-293 | Michal Nowikowski | 2014-08-06 | 1 | -9/+49 |
| | |\ |
|
| | | * | Fixed checking a list of imported names from a module in unused-import case. | Michal Nowikowski | 2014-08-06 | 1 | -4/+28 |
| | | * | Improved comments. | Michal Nowikowski | 2014-08-04 | 1 | -2/+4 |
| | | * | Fix for wired case with import from stmt. | Michal Nowikowski | 2014-08-04 | 1 | -1/+1 |
| | | * | merge | Michal Nowikowski | 2014-08-04 | 1 | -9/+23 |
| | | |\ |
|
| | | | * | Review fixes. | Michal Nowikowski | 2014-08-04 | 1 | -7/+13 |
| | | | * | merge | Michal Nowikowski | 2014-08-03 | 1 | -0/+217 |
| | | | |\ |
|
| | | | * | | Fixed preparing unused-import message. | Michal Nowikowski | 2014-08-02 | 1 | -1/+1 |
| | | | * | | Improved messages text for unused imports. | Michal Nowikowski | 2014-08-02 | 1 | -3/+11 |