commit | fea0a12f6bee4a36b2c9533003e33a12c58d2d91 | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Sun Feb 04 19:16:49 2018 -0800 |
committer | Nick Coghlan <ncoghlan@gmail.com> | Mon Feb 05 13:16:49 2018 +1000 |
tree | 26bad8da60bd9ba7f5041bd0180280ca20c4959c | |
parent | 4abcbc0f0de8dc3c245950e118cd9d374dbfe42b [diff] |
[3.7] bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-5543) When `__getattr__` is implemented, attribute lookup will always fall back to that, even if the initial failure comes from `__getattribute__` or a descriptor's `__get__` method (including property methods). (cherry picked from commit d1f318105b8781b01f3507d5cb0fd841b977d5f2) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>