This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: inspect.getattr_static should avoid dynamic lookup
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: methane, miss-islington
Priority: normal Keywords: 3.8regression, patch

Created on 2019-09-04 11:27 by methane, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15676 merged methane, 2019-09-04 11:36
PR 15692 merged miss-islington, 2019-09-05 04:07
Messages (3)
msg351121 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-09-04 11:27
Reported here: https://github.com/python/cpython/commit/feaefc7f60cd3be7bf4ecc2b73e77d2bfe048403

I merged GH-5351 but it broke inspect.getattr_static behavior.  It should be reverted.
msg351173 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-09-05 04:07
New changeset 8f9cc8771ffb8d0e21be287eaed42ae06087acca by Inada Naoki in branch 'master':
bpo-38026: fix inspect.getattr_static (GH-15676)
https://github.com/python/cpython/commit/8f9cc8771ffb8d0e21be287eaed42ae06087acca
msg351175 - (view) Author: miss-islington (miss-islington) Date: 2019-09-05 04:26
New changeset bdcbb83c6640c2b30d0e1a2a497e9ba34cc53b26 by Miss Islington (bot) in branch '3.8':
bpo-38026: fix inspect.getattr_static (GH-15676)
https://github.com/python/cpython/commit/bdcbb83c6640c2b30d0e1a2a497e9ba34cc53b26
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82207
2019-09-05 04:38:01methanesetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-05 04:26:02miss-islingtonsetnosy: + miss-islington
messages: + msg351175
2019-09-05 04:07:19miss-islingtonsetpull_requests: + pull_request15349
2019-09-05 04:07:12methanesetmessages: + msg351173
2019-09-04 11:36:30methanesetkeywords: + patch
stage: patch review
pull_requests: + pull_request15336
2019-09-04 11:27:21methanecreate