Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump astroid to 2.6.3, update changelogv2.6.3 | Pierre Sassoulas | 2021-07-19 | 1 | -0/+1 |
| | |||||
* | Fix copyright links (#1084) | Marc Mueller | 2021-07-01 | 1 | -1/+1 |
| | | | | * Fix link in license header * Fix link to cpython | ||||
* | Import directly from modules in astroid.brain.* | Pierre Sassoulas | 2021-06-19 | 1 | -12/+9 |
| | |||||
* | Fix issue #891 | Pierre Sassoulas | 2021-04-10 | 1 | -1/+1 |
| | | | | Remove outdated COPYING and rename COPYING.LESSER | ||||
* | Prepare for 2.5.2 releaseastroid-2.5.2 | Pierre Sassoulas | 2021-03-28 | 1 | -0/+1 |
| | |||||
* | Reformats according to black | hippo91 | 2021-03-05 | 1 | -1/+4 |
| | |||||
* | "import numpy" has to be detected as a valid import of numpy | hippo91 | 2021-03-05 | 1 | -1/+1 |
| | |||||
* | Upgrade copyrite notice | Pierre Sassoulas | 2021-02-28 | 1 | -1/+1 |
| | |||||
* | Update copyright notice | hippo91 | 2021-02-15 | 1 | -1/+1 |
| | |||||
* | New copyright notices | hippo91 | 2020-12-27 | 1 | -1/+1 |
| | |||||
* | Add missing copyright annotations for the past releases | Claudiu Popa | 2020-04-27 | 1 | -1/+2 |
| | |||||
* | Add a call to register_transform for each numpy function in case the current ↵ | hippo91 | 2020-01-05 | 1 | -2/+10 |
| | | | | | | | | | | | | node is an astroid.Name instance The problem was that astroid could not infer the result of a call to `numpy.append` because this function calls the `concatenate` function. This last function is inferred thanks to the `brain_numpy_core_multiarray` module but only when the corresponding node is an `astroid.Attribute` (for example numpy.concatenate). It turns out that in the source of the append function the node that realises the call to concatenate is a `astroid.Name`. Thus the correction proposed here is to register the concatenate inference tip function in order to apply it, also, to `astroid.Name`. Close #666 | ||||
* | Make sure that node.expr points to a Name before calling looks_like_numpy_member | Claudiu Popa | 2019-06-20 | 1 | -0/+1 |
| | |||||
* | Avoid use of inference engine before it is fully set up. Add docstrings | hippo91 | 2019-05-25 | 1 | -2/+34 |
| | |||||
* | Corrects the way a numpy member is identified | hippo91 | 2019-04-26 | 1 | -1/+1 |
| | |||||
* | Refomat according to black | hippo91 | 2019-04-21 | 1 | -3/+5 |
| | |||||
* | Factorize functions inference system | hippo91 | 2019-04-20 | 1 | -0/+21 |