diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 03:00:35 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 03:00:35 (GMT) |
commit | 14adafd6eec3b68d11e147c77dab37ad5962fcd6 (patch) | |
tree | 1c94c4f988ae06feb30e0faea3b88162c273a514 /Doc | |
parent | d2d673fc4c208d43f55ff694a333650e5138d489 (diff) | |
download | cpython-14adafd6eec3b68d11e147c77dab37ad5962fcd6.zip cpython-14adafd6eec3b68d11e147c77dab37ad5962fcd6.tar.gz cpython-14adafd6eec3b68d11e147c77dab37ad5962fcd6.tar.bz2 |
Issue #29012: Remove outdated information about __bases__
Patch by Jim Fasarakis-Hilliard.
Diffstat (limited to 'Doc')
-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 73eec1c..2f5625b 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -765,7 +765,7 @@ Custom classes Special attributes: :attr:`~definition.__name__` is the class name; :attr:`__module__` is the module name in which the class was defined; :attr:`~object.__dict__` is the dictionary containing the class's namespace; :attr:`~class.__bases__` is a - tuple (possibly empty or a singleton) containing the base classes, in the + tuple (possibly a singleton) containing the base classes, in the order of their occurrence in the base class list; :attr:`__doc__` is the class's documentation string, or ``None`` if undefined. |