summaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Merge with default.cpopa2014-05-071-0/+1
|\
| * 1.1.1Sylvain Th?nault2014-04-301-1/+3
| |
* | Function nodes can detect if they are decorated with subclasses of builtin ↵cpopa2014-05-071-0/+4
|/ | | | descriptors when determining their type (`classmethod` and `staticmethod`).
* Merge with default.cpopa2014-04-291-1/+4
|\
| * Look in ancestors when a class node doesn't use an explicitly defined ↵cpopa2014-04-251-0/+4
| | | | | | | | metaclass (the metaclass of a class is a metaclass for all its subclasses).
* | Only cache modules if no other module with the same name is known yet, andTorsten Marek2014-04-261-0/+5
|/ | | | only return cached modules if name and filepath match.
* astroid 1.1astroid-1.1Sylvain Th?nault2014-04-181-1/+2
|
* Unwrap instances found in `.ancestors()`, by using their _proxied class. ↵cpopa2014-04-121-0/+3
| | | | Don't inherit the metaclass status if the current class can't be a metaclass.
* fix crash when class has some __call__ method that is not inferable. Closes #17Sylvain Th?nault2014-04-081-4/+8
|
* Backout changeset.cpopa2014-04-021-5/+1
|
* Fix a false positive with builtin exceptions, by rewriting the `args` and ↵cpopa2014-03-081-1/+5
| | | | `message` attributes with their real values.
* Drop yield_from API, add a new YieldFrom node instead.cpopa2014-03-041-3/+1
|
* Add yield_from property for Yield nodes.cpopa2014-03-021-0/+3
|
* Don't crash when inferring nodes from with statements, with multiple context ↵cpopa2014-02-221-0/+4
| | | | managers. Closes #18.
* Changelog update.cpopa2014-01-161-1/+1
|
* All class nodes are marked as new style classes for Py3k, closes #12.cpopa2014-01-161-0/+2
|
* Remove reference to Py3k.cpopa2013-12-181-1/+1
|
* Better Changelog message.cpopa2013-12-181-3/+2
|
* Add Changelog entry regarding `metaclass`, add a new test for py3k.cpopa2013-12-181-0/+4
|
* Add support for inferring the arguments to namedtuple invocations, to ↵Torsten Marek2013-11-031-0/+2
| | | | | | | support cases like this: fields = ['a', 'b', 'c'] A = collections.namedtuple('A', fields)
* Make sure that the class object that is returned forTorsten Marek2013-11-031-0/+4
| | | | namedtuple inference has a parent and add a unittest.
* 1.0.1astroid-version-1.0.1Sylvain Th?nault2013-10-181-1/+10
|
* backport fix done by Tobias Rzepka on pylint for python3 install on win32 ↵Sylvain Th?nault2013-10-031-0/+3
| | | | platforms
* prepare astroid 1.0Sylvain Th?nault2013-07-291-2/+4
|
* Update some function definitions in py2stdlib's hashlib stub moduleTorsten Marek2013-07-241-0/+3
| | | | | | and make sure AST transforms without a predicate always match. Test all this in a new testcase.
* Add support for py3k's keyword only argumentsJulien Cristau2013-07-181-0/+2
| | | | PEP 3102
* Properly recognize methods annotated with abc.abstract{property,method}Torsten Marek2013-06-201-0/+3
| | | | as abstract.
* namedtuple support using extended transformation function features. Closes #8766Sylvain Th?nault2013-06-181-0/+3
|
* [transforms] allow transformation functions on any nodes, not only modulesSylvain Th?nault2013-06-181-0/+5
|
* Added the test_utils module for building ASTs and extracting deeply nested ↵Torsten Marek2013-06-181-0/+2
| | | | nodes for easier testing.
* rename the project astroidDavid Douard2013-06-171-2/+5
|
* 0.24.3logilab-astng-version-0.24.3Sylvain Th?nault2013-04-161-4/+24
|
* [py3.3] don't crash on 'yield from' nodes. Closes #124360Sylvain Th?nault2013-03-271-1/+1
|
* Add support for inference of subscript operations on dict literals. Closes ↵Torsten Marek2013-03-271-0/+2
| | | | | | #123074 actually fix Dict.getitem and enhance infer_subscript
* Set literals should be treated as inference leaves. Closes #47957Torsten Marek2013-03-271-0/+1
|
* Fix inference for generator methods to correctly handle yields in lambdas. ↵Torsten Marek2013-03-271-0/+4
| | | | Closes #123068
* Add missing modules in py2stdlib brain hashlib. Closes #123056Torsten Marek2013-03-271-0/+1
|
* Use correct argument names in the py2stdlib brain urlparse module. Closes ↵Torsten Marek2013-03-271-1/+4
| | | | #123062
* backport proper subprocess.Popen implementation from pylint brain. See #46273Sylvain Th?nault2013-02-221-0/+1
|
* fixes for python 3.3 ast nodes changes. Closes #120646Sylvain Th?nault2013-02-221-0/+1
|
* fix ChangelogSylvain Th?nault2013-02-221-0/+5
|
* 0.24.1logilab-astng-version-0.24.1Sylvain Th?nault2012-10-051-0/+3
|
* fix function fromlineno when some decorator is splited on multiple lines. ↵Mark Gius2012-09-201-0/+2
| | | | Closes #50395
* properly define file_encoding Module attribute. Closes #104041Sylvain Th?nault2012-08-291-0/+1
|
* default is stableSylvain Th?nault2012-08-011-0/+8
|\
| * 0.24Sylvain Th?nault2012-07-181-1/+3
| |
| * include basic stdlib description from the pylint-brain project ↵Sylvain Th?nault2012-07-171-0/+4
| | | | | | | | (https://bitbucket.org/sthenault/pylint-brain). Closes #100013
* | default is stableSylvain Th?nault2012-07-161-1/+2
|\ \ | |/ |/|
| * get_module_part should be given a context_file. Closes pyreverse crash #92362Sylvain Th?nault2012-04-241-0/+3
| |
* | Fix raw_building.object_build for pypy implementation. Closes #99583FELD Boris2012-07-161-0/+4
|/