summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-02-10 12:26:10 (GMT)
committerLarry Hastings <larry@hastings.org>2014-02-10 12:26:10 (GMT)
commitad88d7a26bb0be55f2687ccf646f0af9f75913ba (patch)
tree400a418ba418b9574d6466bc18c4ef9eb266134b /Doc/library/unittest.rst
parent8f9f0f12e845034080525c6a80d52215533cb2a4 (diff)
downloadcpython-ad88d7a26bb0be55f2687ccf646f0af9f75913ba.zip
cpython-ad88d7a26bb0be55f2687ccf646f0af9f75913ba.tar.gz
cpython-ad88d7a26bb0be55f2687ccf646f0af9f75913ba.tar.bz2
Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index eea21d3..6ec3609 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1917,13 +1917,13 @@ Loading and running tests
By default this runner shows :exc:`DeprecationWarning`,
:exc:`PendingDeprecationWarning`, :exc:`ResourceWarning` and
- :exc:`ImportWarning` even if they are :ref:`ignored by default <warning-
- ignored>`. Deprecation warnings caused by :ref:`deprecated unittest methods
- <deprecated-aliases>` are also special-cased and, when the warning filters
- are ``'default'`` or ``'always'``, they will appear only once per-module, in
- order to avoid too many warning messages. This behavior can be overridden
- using the :option:`-Wd` or :option:`-Wa` options and leaving *warnings* to
- ``None``.
+ :exc:`ImportWarning` even if they are :ref:`ignored by default
+ <warning-ignored>`. Deprecation warnings caused by :ref:`deprecated unittest
+ methods <deprecated-aliases>` are also special-cased and, when the warning
+ filters are ``'default'`` or ``'always'``, they will appear only once
+ per-module, in order to avoid too many warning messages. This behavior can
+ be overridden using the :option:`-Wd` or :option:`-Wa` options and leaving
+ *warnings* to ``None``.
.. versionchanged:: 3.2
Added the ``warnings`` argument.