summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-09 19:29:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-09 19:29:36 (GMT)
commitcdddf2b875e10f86af55eacb83e81025f1071b39 (patch)
tree84dfe3c7b754b221d306b1627ed73c357d932106
parent462d1b39a48ed3a18a0e3f3ae9edf643af19a981 (diff)
downloadcpython-cdddf2b875e10f86af55eacb83e81025f1071b39.zip
cpython-cdddf2b875e10f86af55eacb83e81025f1071b39.tar.gz
cpython-cdddf2b875e10f86af55eacb83e81025f1071b39.tar.bz2
Mention logging.captureWarnings in the warnings module doc.
-rw-r--r--Doc/library/warnings.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/warnings.rst b/Doc/library/warnings.rst
index 274840b..8af19a2 100644
--- a/Doc/library/warnings.rst
+++ b/Doc/library/warnings.rst
@@ -40,6 +40,10 @@ may be overridden; the default implementation of this function formats the
message by calling :func:`formatwarning`, which is also available for use by
custom implementations.
+.. seealso::
+ :func:`logging.captureWarnings` allows you to handle all warnings with
+ the standard logging infrastructure.
+
.. _warning-categories: