-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
gh-112331: Fix reference manual description of attribute lookup mechanics #112375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
07f968d
43e3a2c
cf24384
3bace81
6a4be55
b8f4457
3ebd693
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -823,12 +823,18 @@ An attribute reference is a primary followed by a period and a name: | |
|
||
The primary must evaluate to an object of a type that supports attribute | ||
references, which most objects do. This object is then asked to produce the | ||
attribute whose name is the identifier. This production can be customized by | ||
overriding the :meth:`__getattr__` method. If this attribute is not available, | ||
the exception :exc:`AttributeError` is raised. Otherwise, the type and value of | ||
the object produced is determined by the object. Multiple evaluations of the | ||
same attribute reference may yield different objects. | ||
|
||
attribute whose name is the identifier. The type and value produced is | ||
determined by the object. Multiple evaluations of the same attribute | ||
reference may yield different objects. | ||
|
||
This production can be customized by overriding the | ||
:meth:`~object.__getattribute__` method or the :meth:`~object.__getattr__` | ||
method. The :meth:`!__getattribute__` method is called first and either | ||
returns a value or raises :exc:`AttributeError` if the attribute is not | ||
available. | ||
Comment on lines
+832
to
+834
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Of course, it is possible to create badly behaved objects that raise other exceptions from >>> class Foo:
... def __getattribute__(self, attr):
... if attr == 'foo':
... raise TypeError('no')
... return object.__getattribute__(self, attr)
...
>>> f = Foo()
>>> f.a = 1
>>> f.a
1
>>> f.b
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
f.b
File "<stdin>", line 5, in __getattribute__
return object.__getattribute__(self, attr)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'Foo' object has no attribute 'b'
>>> f.foo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
f.foo
File "<stdin>", line 4, in __getattribute__
raise TypeError('no')
TypeError: no Does that need to be mentioned here? Or is it too obscure? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need. Any code can raise a weird error at any time but we don't need to mention that in the docs in the thousands of places where this could occur: This wording corresponds to what the code actually does:
|
||
|
||
If an :exc:`AttributeError` is raised and the object has a :meth:`!__getattr__` | ||
method, that method is called as a fallback. | ||
|
||
.. _subscriptions: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think "or" is fine. The "and/or" is correct but looks weird and doesn't read well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I disagree that it looks weird, but won't insist