diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-22 06:10:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 06:10:24 (GMT) |
commit | 2528a7db1c8b7ebc3d442ff0984248ed3e325bf6 (patch) | |
tree | c86435e84e459b777fc82d1f031b022b7f73ab40 | |
parent | 28b40d7a349787817fe5f6ebfa753c29b96c8832 (diff) | |
download | cpython-2528a7db1c8b7ebc3d442ff0984248ed3e325bf6.zip cpython-2528a7db1c8b7ebc3d442ff0984248ed3e325bf6.tar.gz cpython-2528a7db1c8b7ebc3d442ff0984248ed3e325bf6.tar.bz2 |
bpo-42391: Clarify documentation of TestCase.assertIs (GH-23348)
Removing 'evaluate' makes it more consistent with other assertX entries.
(cherry picked from commit bd8c22e1fa8f8f6e31ee083a8b9321a2c324f02f)
Co-authored-by: Ram Rachum <ram@rachum.com>
-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 d41ff1f..a9e679f 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -897,8 +897,7 @@ Test cases .. method:: assertIs(first, second, msg=None) assertIsNot(first, second, msg=None) - Test that *first* and *second* evaluate (or don't evaluate) to the - same object. + Test that *first* and *second* are (or are not) the same object. .. versionadded:: 3.1 |