]> granicus.if.org Git - python/commitdiff
Issue #29012: Merge from 3.5
authorBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:01:07 +0000 (06:01 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:01:07 +0000 (06:01 +0300)
1  2 
Doc/reference/datamodel.rst

index f2a2b12b9f69d5a1bb078791769ad00b8fee5b66,2f5625b4525b770b631572a06a5c027e51997a2f..aa03477fb85d735915b53a37da21a61327c97c63
@@@ -788,12 -765,9 +788,12 @@@ Custom classe
     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.
 +   class's documentation string, or ``None`` if undefined;
 +   :attr:`__annotations__` (optional) is a dictionary containing
 +   :term:`variable annotations <variable annotation>` collected during
 +   class body execution.
  
  Class instances
     .. index::