diff options
| author | Brett Cannon <bcannon@gmail.com> | 2010-07-23 12:07:27 (GMT) |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2010-07-23 12:07:27 (GMT) |
| commit | 9ae2cb740ae692bbda5a1728b5843ae84c7e3eb5 (patch) | |
| tree | f6005cfdda4c8f4799a91094975efca47d33511c | |
| parent | 8a14db802bb9362229ba226d9c4db39a87eecef9 (diff) | |
| download | cpython-9ae2cb740ae692bbda5a1728b5843ae84c7e3eb5.zip cpython-9ae2cb740ae692bbda5a1728b5843ae84c7e3eb5.tar.gz cpython-9ae2cb740ae692bbda5a1728b5843ae84c7e3eb5.tar.bz2 | |
Merged revisions 83072 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
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.
........
| -rw-r--r-- | Doc/library/test.rst | 7 | ||||
| -rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index b21e177..88f0397 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -6,6 +6,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.test_support` and :mod:`test.regrtest`. @@ -64,6 +64,8 @@ Tests Documentation ------------- +- Issue 9255: Document that the 'test' package is for internal Python use only. + - Issue 7829: Document in dis that bytecode is an implementation detail. |
