diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-12-19 05:04:48 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-12-19 05:04:48 (GMT) |
commit | 80a61e8d4c551367d288d880d9d59e7e5cf35074 (patch) | |
tree | 3cb1f30f89908ab8dcaa8e3a59bc60a8ed6eaea2 /Doc | |
parent | a51623b1602d6bb695fee36e74146269e6358d6b (diff) | |
download | cpython-80a61e8d4c551367d288d880d9d59e7e5cf35074.zip cpython-80a61e8d4c551367d288d880d9d59e7e5cf35074.tar.gz cpython-80a61e8d4c551367d288d880d9d59e7e5cf35074.tar.bz2 |
#13387: rephrase unclear sentence.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 990bd48..5833868 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -929,8 +929,7 @@ 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>`. + To check for the exact type, use :func:`assertIs(type(obj), cls) <assertIs>`. .. versionadded:: 3.2 |