diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-07-23 12:03:37 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-07-23 12:03:37 (GMT) |
commit | c14968f7f3cd55a29e31801e5e56d5525ae796ef (patch) | |
tree | a8fd0b78facbab329031839289b68b28e2b27630 /Doc | |
parent | 87597749d5d5567688454ae827d70a0ea6e3677c (diff) | |
download | cpython-c14968f7f3cd55a29e31801e5e56d5525ae796ef.zip cpython-c14968f7f3cd55a29e31801e5e56d5525ae796ef.tar.gz cpython-c14968f7f3cd55a29e31801e5e56d5525ae796ef.tar.bz2 |
Blocked revisions 83072 via svnmerge
........
r83072 | brett.cannon | 2010-07-23 12:31:31 +0100 (Fri, 23 Jul 2010) | 5 lines
Document the fact that the 'test' package is meant only for use by Python
itself and not by others.
Closes issue 9255.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/test.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 974f71f..0b16109 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -5,6 +5,13 @@ :synopsis: Regression tests package containing the testing suite for Python. .. sectionauthor:: Brett Cannon <brett@python.org> +.. note:: + The :mod:`test` package is meant for internal use by Python only. It is + documented for the benefit of the core developers of Python. Any use of + this package outside of Python's standard library is discouraged as code + mentioned here can change or be removed without notice between releases of + Python. + The :mod:`test` package contains all regression tests for Python as well as the modules :mod:`test.support` and :mod:`test.regrtest`. |