diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-12-12 18:25:25 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-12-12 18:25:25 (GMT) |
commit | 36730e8bc157901bd891df9a2dbe8a153538fe43 (patch) | |
tree | 90bb4000ff5f7e677beeb491bc59d5f3865a4851 /Doc/library/test.rst | |
parent | 19d6ce0f73f3459f0f8c4fb9f0d32cee5f866b05 (diff) | |
download | cpython-36730e8bc157901bd891df9a2dbe8a153538fe43.zip cpython-36730e8bc157901bd891df9a2dbe8a153538fe43.tar.gz cpython-36730e8bc157901bd891df9a2dbe8a153538fe43.tar.bz2 |
Make this a warning and fix indentation
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r-- | Doc/library/test.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 58adfa2..bcce690 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -5,12 +5,12 @@ :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. +.. warning:: + 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 |