diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2019-08-04 14:12:48 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-04 14:12:48 +0300 |
| commit | 18b711c5a7f90d88fb74748f18fa8ef49d8486c7 (patch) | |
| tree | d04ab59ccadbade80f8999c921dd3a19b62a9cc9 /Doc | |
| parent | 17e52649c0e7e9389f1cc2444a53f059e24e6bca (diff) | |
| download | cpython-git-18b711c5a7f90d88fb74748f18fa8ef49d8486c7.tar.gz | |
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
The collection's item is now always at the left and
the needle is on the right of ==.
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/library/test.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index da6a85d340..6eef5c6549 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -367,6 +367,12 @@ The :mod:`test.support` module defines the following constants: Object that is equal to anything. Used to test mixed type comparison. +.. data:: NEVER_EQ + + Object that is not equal to anything (even to :data:`ALWAYS_EQ`). + Used to test mixed type comparison. + + .. data:: LARGEST Object that is greater than anything (except itself). |
