]> granicus.if.org Git - python/commitdiff
Issue #29012: Remove another outdated information
authorBerker Peksag <berker.peksag@gmail.com>
Tue, 3 Jan 2017 00:34:15 +0000 (03:34 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Tue, 3 Jan 2017 00:34:15 +0000 (03:34 +0300)
Patch by Jim Fasarakis-Hilliard.

Doc/reference/datamodel.rst

index 2f5625b4525b770b631572a06a5c027e51997a2f..cd28c147b279922423804a66f1618bb8a8b594e9 100644 (file)
@@ -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::