15
0

Accepting request 240195 from home:TheBlackCat:branches:devel:languages:python

Update to 1.1.1

OBS-URL: https://build.opensuse.org/request/show/240195
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astroid?expand=0&rev=5
This commit is contained in:
Todd R
2014-07-10 13:22:28 +00:00
committed by Git OBS Bridge
parent f8845fdca6
commit 83d95643b3
4 changed files with 29 additions and 5 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Thu Jul 10 13:12:12 UTC 2014 - toddrme2178@gmail.com
- Update to 1.1.1
* `Class.metaclass()` looks in ancestors when the current class
does not define explicitly a metaclass.
* Do not cache modules if a module with the same qname is already
known, and only return cached modules if both name and filepath
match. Fixes pylint Bitbucket issue #136.
- Update to 1.1.0
* All class nodes are marked as new style classes for Py3k.
* Add a `metaclass` function to `Class` nodes to
retrieve their metaclass.
* Add a new YieldFrom node.
* Add support for inferring arguments to namedtuple invocations.
* Make sure that objects returned for namedtuple
inference have parents.
* Don't crash when inferring nodes from `with` clauses
with multiple context managers. Closes #18.
* Don't crash when a class has some __call__ method that is not
inferable. Closes #17.
* Unwrap instances found in `.ancestors()`, by using their _proxied
class.
-------------------------------------------------------------------
Thu Nov 28 14:30:25 UTC 2013 - toddrme2178@gmail.com