summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-26 11:49:50 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-26 11:49:50 +0300
commitb6a231b3ab14264ea4f19a5816930f0f43458c87 (patch)
tree20596cdad0916f27c70a11eb8109bf7d2c1801a0 /ChangeLog
parent6c411a2a5a29073481ebffaaa18a677260910c6d (diff)
downloadastroid-b6a231b3ab14264ea4f19a5816930f0f43458c87.tar.gz
Class.getattr looks by default in the implicit and the explicit metaclasses, which is `type` on Python 3.
Closes issue #114.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a5c9511..d17134f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -240,6 +240,11 @@ Change log for the astroid package (used to be astng)
* Add get_wrapping_class API to scoped_nodes, which can be used to
retrieve the class that wraps a node.
+
+ * Class.getattr looks by default in the implicit and the explicit metaclasses,
+ which is `type` on Python 3.
+
+ Closes issue #114.