diff options
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r-- | Doc/library/test.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 7d62a94..da6a85d 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -356,11 +356,28 @@ The :mod:`test.support` module defines the following constants: Check for presence of docstrings. + .. data:: TEST_HTTP_URL Define the URL of a dedicated HTTP server for the network tests. +.. data:: ALWAYS_EQ + + Object that is equal to anything. Used to test mixed type comparison. + + +.. data:: LARGEST + + Object that is greater than anything (except itself). + Used to test mixed type comparison. + + +.. data:: SMALLEST + + Object that is less than anything (except itself). + Used to test mixed type comparison. + The :mod:`test.support` module defines the following functions: |