diff options
author | Georg Brandl <georg@python.org> | 2010-11-26 08:58:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-26 08:58:14 (GMT) |
commit | 241efded1d1d66e326b134a871a10e076914b3a2 (patch) | |
tree | 4f212d774fce13026765d24d0d3b98cebd2319cd /Doc/library/warnings.rst | |
parent | 3fd9ef8f65820d155282d286408479228aa207b0 (diff) | |
download | cpython-241efded1d1d66e326b134a871a10e076914b3a2.zip cpython-241efded1d1d66e326b134a871a10e076914b3a2.tar.gz cpython-241efded1d1d66e326b134a871a10e076914b3a2.tar.bz2 |
Fix mismerges of version directives.
Diffstat (limited to 'Doc/library/warnings.rst')
-rw-r--r-- | Doc/library/warnings.rst | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Doc/library/warnings.rst b/Doc/library/warnings.rst index 5b6e6af..544d9f7 100644 --- a/Doc/library/warnings.rst +++ b/Doc/library/warnings.rst @@ -159,17 +159,12 @@ By default, Python installs several warning filters, which can be overridden by the command-line options passed to :option:`-W` and calls to :func:`filterwarnings`. -* :exc:`DeprecationWarning` and :exc:`PendingDeprecationWarning`, and - :exc:`ImportWarning` are ignored. +* :exc:`PendingDeprecationWarning`, and :exc:`ImportWarning` are ignored. * :exc:`BytesWarning` is ignored unless the :option:`-b` option is given once or twice; in this case this warning is either printed (``-b``) or turned into an exception (``-bb``). -.. versionchanged:: 3.2 - :exc:`DeprecationWarning` is now ignored by default in addition to - :exc:`PendingDeprecationWarning`. - .. _warning-suppress: |