summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-28 07:15:38 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-28 07:15:38 (GMT)
commit549edcfa054cc40d212a9c171f5ec7d353f43260 (patch)
treee10687af8519a90a7ce297684975296e69a3d85e /Doc
parent24fa60c8d5b682d1039d27c1cefae512800c4d8f (diff)
parent44b1020c121aa5511e8994496ee4e7a2ad9deb8d (diff)
downloadcpython-549edcfa054cc40d212a9c171f5ec7d353f43260.zip
cpython-549edcfa054cc40d212a9c171f5ec7d353f43260.tar.gz
cpython-549edcfa054cc40d212a9c171f5ec7d353f43260.tar.bz2
Merge with 3.5
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 409f6c4..3c38b95 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -703,10 +703,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.