diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-01-03 00:34:15 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-01-03 00:34:15 (GMT) |
commit | 7b4e55109100d1069e8176d6a84c48ec928f72ad (patch) | |
tree | 84018aedc5068f3d578ec029dcfbcb17924ad75e /Doc | |
parent | e8134afd8e331f364378a5f6d03830a3c2094074 (diff) | |
download | cpython-7b4e55109100d1069e8176d6a84c48ec928f72ad.zip cpython-7b4e55109100d1069e8176d6a84c48ec928f72ad.tar.gz cpython-7b4e55109100d1069e8176d6a84c48ec928f72ad.tar.bz2 |
Issue #29012: Remove another outdated information
Patch by Jim Fasarakis-Hilliard.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/datamodel.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 2f5625b..cd28c14 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -765,9 +765,9 @@ 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 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. + tuple 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. Class instances .. index:: |