summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-24 21:53:24 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-24 21:53:24 +0300
commit3416d7889642ac9f12af981b9bc27c1d1fdfcec5 (patch)
tree03a43c7b1c0a375958f0f5157e729df3ea36bb4c /ChangeLog
parent8e82e514480244daafea45902dae98cc4b5eaaa2 (diff)
downloadastroid-3416d7889642ac9f12af981b9bc27c1d1fdfcec5.tar.gz
Add brain tip for understanding numpy.core's mutation of the __all__ variable
Since astroid doesn't understand properly augmented assignments, we have false positives with pylint when trying to find numpy attributes defined in some submodules, since numpy and numpy.core generates the __all__ list by appending values from the subimport's __all__. This should fix pylint's issue #453.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 85d9550..ed0ea9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -310,6 +310,8 @@ Change log for the astroid package (used to be astng)
leads to a class creationg, not to an instance creation.
* Understand the `slice` builtin. Closes issue #184.
+
+ * Add brain tips for numpy.core, which should fix Pylint's #453.