From: Brett Cannon Date: Fri, 23 Jul 2010 11:31:31 +0000 (+0000) Subject: Document the fact that the 'test' package is meant only for use by Python X-Git-Tag: v3.2a1~142 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a4e50cb7e4646b046f98e67f749cdcfecf7d75a;p=python Document the fact that the 'test' package is meant only for use by Python itself and not by others. Closes issue 9255. --- diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 3b9ad104d8..d6ff734b8b 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 +.. 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`. diff --git a/Misc/NEWS b/Misc/NEWS index ef7988f1f6..6cf5a7dc8c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1655,6 +1655,9 @@ Build Documentation ------------ +- Issue 9255: Document that the 'test' package is meant for internal Python use + only. + - A small wsgi server was added as Tools/scripts/serve.py, and is used to implement a local documentation server via 'make serve' in the doc directory.