]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #29012: Remove outdated information about __bases__
authorBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:00:35 +0000 (06:00 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:00:35 +0000 (06:00 +0300)
Patch by Jim Fasarakis-Hilliard.

Doc/reference/datamodel.rst

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