diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-20 21:35:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-20 21:35:26 (GMT) |
commit | ee8712cda46338d223509cc5751fd36509ad3860 (patch) | |
tree | bb9d363b4276566415457980472001c7e3ec2bed /Doc/library | |
parent | 6a654814ea3f3a918935762ffdcd33ae98e00278 (diff) | |
download | cpython-ee8712cda46338d223509cc5751fd36509ad3860.zip cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.gz cpython-ee8712cda46338d223509cc5751fd36509ad3860.tar.bz2 |
#2621 rename test.test_support to test.support
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/test.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index a6a3584..4c0af39 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -179,14 +179,14 @@ at the top-level directory where Python was built. On Windows, executing tests. -:mod:`test.test_support` --- Utility functions for tests +:mod:`test.support` --- Utility functions for tests ======================================================== -.. module:: test.test_support +.. module:: test.support :synopsis: Support for Python regression tests. -The :mod:`test.test_support` module provides support for Python's regression +The :mod:`test.support` module provides support for Python's regression tests. This module defines the following exceptions: @@ -236,7 +236,7 @@ The :mod:`test.test_support` module defines the following constants: Set to the path that a temporary file may be created at. Any temporary that is created should be closed and unlinked (removed). -The :mod:`test.test_support` module defines the following functions: +The :mod:`test.support` module defines the following functions: .. function:: forget(module_name) @@ -311,7 +311,7 @@ The :mod:`test.test_support` module defines the following functions: assert s.getvalue() == "hello" -The :mod:`test.test_support` module defines the following classes: +The :mod:`test.support` module defines the following classes: .. class:: TransientResource(exc[, **kwargs]) |