| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
Maybe instead we should do this?
» git patch
diff --git Lib/rlcompleter.py Lib/rlcompleter.py
index 206d6fb511c..62fd2c7fdec 100644
--- Lib/rlcompleter.py
+++ Lib/rlcompleter.py
@@ -176,8 +176,9 @@ def attr_matches(self, text):
if (word[:n] == attr and
not (noprefix and word[:n+1] == noprefix)):
match = "%s.%s" % (expr, word)
+ import types
if isinstance(getattr(type(thisobject), word, None),
- property):
+ (property, types.GetSetDescriptorType)):
# bpo-44752: thisobject.word is a method decorated by
# `@property`. What follows applies a postfix if
# thisobject.word is callable, but know we know that
Sorry, something went wrong.
|
Not really sure. My intention was to eliminate all possible warnings during completion (now and in future) no matter where they come from. Maybe it's the only possible path where it can happen but I am not sure since I never dealt with such things. Your solution looks cleaner to me and I believe you have broader context so I leave it up to you to decide. |
Sorry, something went wrong.
|
My thoughs: properties should not evaluate when auto-complete works, so I think that adding an ignore just hides this problem. So, we should really address the root of this problem: do not execute .co_lnotab property on code objects (and similar types as well). |
Sorry, something went wrong.
I agree. But is this true only for built-in objects and their properties or user defined as well? class D:
def __get__(self, _, __):
print("evaluated")
class C:
prop = D()trying to get suggestions for C. evaluates prop and prints the message. |
Sorry, something went wrong.
|
We can also try to replace getattr with inspect.getattr_static |
Sorry, something went wrong.
|
Some things depend on being evaluated. Using inspect.getattr_static instead of getattr breaks tests. cpython/Lib/test/test_rlcompleter.py Lines 51 to 85 in 77b45fa Things like __init_subclass__, __class__, mro, etc... |
Sorry, something went wrong.
|
Thanks @WolframAlph for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Sorry, something went wrong.
…onGH-113979) (cherry picked from commit e03dde5) Co-authored-by: Yan Yanchii <yyanchiy@gmail.com>
|
GH-119429 is a backport of this pull request to the 3.13 branch. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
gh-113978