Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | A transform for the builtin `dataclasses` module was added. | Claudiu Popa | 2019-10-09 | 1 | -0/+50 |
This should address various `dataclasses` issues that were surfaced even more after the release of pylint 2.4.0. In the previous versions of `astroid`, annotated assign nodes were allowed to be retrieved via `getattr()` but that no longer happens with the latest `astroid` release, as those attribute are not actual attributes, but rather virtual ones, thus an operation such as `getattr()` does not make sense for them. |