[Python-checkins] bpo-44135: Refine explanation of how passing tuples to issubclass() behaves (GH-26193)

ambv webhook-mailer at python.org
Tue Aug 31 09:39:23 EDT 2021


https://github.com/python/cpython/commit/08767c73b5bf1f28792d5fef7f41d52822a4989f
commit: 08767c73b5bf1f28792d5fef7f41d52822a4989f
branch: main
author: Zack Kneupper <zachary.kneupper at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-08-31T15:39:19+02:00
summary:

bpo-44135: Refine explanation of how passing tuples to issubclass() behaves (GH-26193)

Co-authored-by: Zachary Kneupper <zachary.kneupper at gmail.com>

files:
M Doc/library/functions.rst

diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 652e30c6088ad..fef6c6292f95c 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -916,9 +916,9 @@ are always available.  They are listed here in alphabetical order.
    Return ``True`` if *class* is a subclass (direct, indirect, or :term:`virtual
    <abstract base class>`) of *classinfo*.  A
    class is considered a subclass of itself. *classinfo* may be a tuple of class
-   objects or a :ref:`types-union`, in which case every entry in *classinfo*
-   will be checked. In any other
-   case, a :exc:`TypeError` exception is raised.
+   objects or a :ref:`types-union`, in which case return True if *class* is a
+   subclass of any entry in *classinfo*.  In any other case, a :exc:`TypeError`
+   exception is raised.
 
    .. versionchanged:: 3.10
       *classinfo* can be a :ref:`types-union`.



More information about the Python-checkins mailing list