]> granicus.if.org Git - python/commitdiff
#13387: add note about checking the exact type in assertIsInstance doc.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Nov 2011 16:59:36 +0000 (18:59 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Nov 2011 16:59:36 +0000 (18:59 +0200)
Doc/library/unittest.rst

index 32f66feef2b3c752cc1e69523acd68492fe08c93..990bd4853f6b63aceb3b552e70646edfdb4ca999 100644 (file)
@@ -929,6 +929,8 @@ Test cases
 
       Test that *obj* is (or is not) an instance of *cls* (which can be a
       class or a tuple of classes, as supported by :func:`isinstance`).
+      To check for a specific type (without including superclasses) use
+      :func:`assertIs(type(obj), cls) <assertIs>`.
 
       .. versionadded:: 3.2