]> granicus.if.org Git - python/commitdiff
Merged revisions 83072 via svnmerge from
authorBrett Cannon <bcannon@gmail.com>
Fri, 23 Jul 2010 12:07:27 +0000 (12:07 +0000)
committerBrett Cannon <bcannon@gmail.com>
Fri, 23 Jul 2010 12:07:27 +0000 (12:07 +0000)
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.
........

Doc/library/test.rst
Misc/NEWS

index b21e177c0ad4efc7ff9ea45a2f53764d5aa7d987..88f03975756322aa7861a946895038a9327499e1 100644 (file)
@@ -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`.
index 45bc11822f3f1e04e1fcfdfb65a02ddfbc335290..3f4a921f7d9aa12ec4f26d1710c7d8a7720b904b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.