diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-08-02 14:40:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-02 14:40:42 (GMT) |
commit | 498376d7a7d6f704f22a2c963130cc15c17e7a6f (patch) | |
tree | 95a08b203264fd5c9422e0fbc2cd242459e74204 /Doc/reference | |
parent | 9fc1c992d6fcea0b7558c581846eef6bdd811f6c (diff) | |
download | cpython-498376d7a7d6f704f22a2c963130cc15c17e7a6f.zip cpython-498376d7a7d6f704f22a2c963130cc15c17e7a6f.tar.gz cpython-498376d7a7d6f704f22a2c963130cc15c17e7a6f.tar.bz2 |
gh-122445: populate only modified fields in __static_attributes__ (#122446)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 2576f9a..aa61fbd 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -999,7 +999,7 @@ Special attributes: a :ref:`generic class <generic-classes>`. :attr:`~class.__static_attributes__` - A tuple containing names of attributes of this class which are accessed + A tuple containing names of attributes of this class which are assigned through ``self.X`` from any function in its body. :attr:`__firstlineno__` |