From: Berker Peksag Date: Tue, 3 Jan 2017 00:34:15 +0000 (+0300) Subject: Issue #29012: Remove another outdated information X-Git-Tag: v3.6.1rc1~217^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b4e55109100d1069e8176d6a84c48ec928f72ad;p=thirdparty%2FPython%2Fcpython.git Issue #29012: Remove another outdated information Patch by Jim Fasarakis-Hilliard. --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 2f5625b4525b..cd28c147b279 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::