diff options
author | Georg Brandl <georg@python.org> | 2011-07-30 07:01:03 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-07-30 07:01:03 (GMT) |
commit | 39112a964348aa1fb0ccd08d92eef2fd0c0fbabc (patch) | |
tree | be539b7975ce664e4eb8ffc7e9a40fb38d5c8652 | |
parent | 6e5b2ac400ed6b9eef0c36977f70a0860e2fa001 (diff) | |
parent | eea6cda91a074fedd2d14eb1d8654d65fc616c09 (diff) | |
download | cpython-39112a964348aa1fb0ccd08d92eef2fd0c0fbabc.zip cpython-39112a964348aa1fb0ccd08d92eef2fd0c0fbabc.tar.gz cpython-39112a964348aa1fb0ccd08d92eef2fd0c0fbabc.tar.bz2 |
Merge with 3.2.
-rw-r--r-- | Doc/library/test.rst | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 8dba9c9..be5990c 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -187,18 +187,23 @@ executing :program:`rt.bat` from your :file:`PCBuild` directory will run all regression tests. -:mod:`test.support` --- Utility functions for tests -=================================================== +:mod:`test.support` --- Utilities for the Python test suite +=========================================================== .. module:: test.support - :synopsis: Support for Python regression tests. + :synopsis: Support for Python's regression test suite. The :mod:`test.support` module provides support for Python's regression -tests. +test suite. + +.. note:: + :mod:`test.support` is not a public module. It is documented here to help + Python developers write tests. The API of this module is subject to change + without backwards compatibility concerns between releases. -This module defines the following exceptions: +This module defines the following exceptions: .. exception:: TestFailed @@ -213,8 +218,8 @@ This module defines the following exceptions: network connection) is not available. Raised by the :func:`requires` function. -The :mod:`test.support` module defines the following constants: +The :mod:`test.support` module defines the following constants: .. data:: verbose @@ -236,7 +241,6 @@ The :mod:`test.support` module defines the following constants: The :mod:`test.support` module defines the following functions: - .. function:: forget(module_name) Remove the module named *module_name* from ``sys.modules`` and delete any |