summaryrefslogtreecommitdiff
path: root/astroid/brain/brain_dataclasses.py
Commit message (Collapse)AuthorAgeFilesLines
* A transform for the builtin `dataclasses` module was added.Claudiu Popa2019-10-091-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.