[Python-checkins] cpython (3.5): Issue #29012: Remove outdated information about __bases__

berker.peksag python-checkins at python.org
Sun Jan 1 21:59:02 EST 2017


https://hg.python.org/cpython/rev/721df314d45a
changeset:   105929:721df314d45a
branch:      3.5
parent:      105924:d41aa32f7f3c
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Mon Jan 02 06:00:35 2017 +0300
summary:
  Issue #29012: Remove outdated information about __bases__

Patch by Jim Fasarakis-Hilliard.

files:
  Doc/reference/datamodel.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -765,7 +765,7 @@
    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.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list