]> granicus.if.org Git - python/commitdiff
Issue #25432: Explain isinstance behaviour when type is a tuple.
authorTerry Jan Reedy <tjreedy@udel.edu>
Wed, 28 Oct 2015 07:14:56 +0000 (03:14 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Wed, 28 Oct 2015 07:14:56 +0000 (03:14 -0400)
Doc/library/functions.rst

index 5377335a6e6eb30bdf37b0fcbc49863ee83959d9..97c9f8ded1e8b4841439985f873f6124490d131a 100644 (file)
@@ -702,10 +702,10 @@ are always available.  They are listed here in alphabetical order.
    Return true if the *object* argument is an instance of the *classinfo*
    argument, or of a (direct, indirect or :term:`virtual <abstract base
    class>`) subclass thereof.  If *object* is not
-   an object of the given type, the function always returns false.  If
-   *classinfo* is not a class (type object), it may be a tuple of type objects,
-   or may recursively contain other such tuples (other sequence types are not
-   accepted).  If *classinfo* is not a type or tuple of types and such tuples,
+   an object of the given type, the function always returns false.
+   If *classinfo* is a tuple of type objects (or recursively, other such
+   tuples), return true if *object* is an instance of any of the types.
+   If *classinfo* is not a type or tuple of types and such tuples,
    a :exc:`TypeError` exception is raised.