| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Ensure that generated enum values have the correct base classesenum-fixes | Philip Lorenz | 2015-05-01 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | Enum values should share the same base classes as their defining class. If this is not the case it may lead to wrong inference results when an enum member is used - e.g. for the following snippet: class X(enum.IntEnum): one = 1 print([1, 2][X.one]) pylint will detect a "invalid-sequence-index" error as the __index__ method of X.one is not detected. | ||||
| * | SyncManager is a context manager as well. | Claudiu Popa | 2015-04-29 | 1 | -0/+2 |
| | | |||||
| * | Add brain tips for multiprocessing post Python 3.4+. | Claudiu Popa | 2015-04-02 | 1 | -4/+33 |
| | | | | | | | | In Python 3.4+, the module level functions are retrieved with getattr from a context object, leading to many no-member errors in Pylint. This patch ensures us that we can retrieve those attributes, no matter what. | ||||
| * | Add brain tips for multiprocessing.Manager and ↵ | Claudiu Popa | 2015-03-28 | 1 | -0/+52 |
| | | | | | multiprocessing.managers.SyncManager. | ||||
| * | Some style fixes. | Claudiu Popa | 2015-03-28 | 1 | -5/+4 |
| | | |||||
| * | removed long suffix | Fran?ois Mockers | 2015-01-08 | 1 | -2/+2 |
| | | |||||
| * | added properties block_size and digest_size to hashlib | Fran?ois Mockers | 2015-01-07 | 1 | -0/+6 |
| | | |||||
| * | Trim two extra lines. | Claudiu Popa | 2015-01-03 | 1 | -2/+0 |
| | | |||||
| * | Fix a typo. | Claudiu Popa | 2014-12-11 | 1 | -1/+1 |
| | | |||||
| * | don't commit/push without checking for unsaved buffer | Sylvain Th?nault | 2014-12-04 | 1 | -43/+0 |
| | | |||||
| * | Add brain definition for most string and unicode methods | Sylvain Th?nault | 2014-12-04 | 1 | -0/+47 |
| | | |||||
| * | Return proper string types for hashlib overlay. Fixes #29. | Torsten Marek | 2014-11-22 | 1 | -5/+5 |
| | | |||||
| * | fix function's prototype (bad copy/paste) | Sylvain Th?nault | 2014-11-19 | 1 | -1/+1 |
| | | |||||
| * | Simplify & generalize code for module extenders. | Torsten Marek | 2014-11-15 | 1 | -38/+14 |
| | | |||||
| * | Move all astroid modules into a its own directory, which is now the package. | Torsten Marek | 2014-11-08 | 1 | -0/+350 |
| python setup.py develop now works. | |||||
