Home
last modified time | relevance | path

Searched refs:captureWarnings (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_logging.py1084 logging.captureWarnings(True)
1106 logging.captureWarnings(False)
/external/python/cpython2/Doc/library/
Dlogging.rst994 The :func:`captureWarnings` function can be used to integrate :mod:`logging`
997 .. function:: captureWarnings(capture)
1009 (i.e. those in effect before ``captureWarnings(True)`` was called).
Dwarnings.rst47 :func:`logging.captureWarnings` allows you to handle all warnings with
/external/python/cpython2/Lib/logging/
D__init__.py1737 def captureWarnings(capture): function
/external/python/cpython3/Lib/test/
Dtest_logging.py2089 logging.captureWarnings(True)
2090 self.addCleanup(logging.captureWarnings, False)
2113 logging.captureWarnings(True)
2114 self.addCleanup(logging.captureWarnings, False)
/external/python/cpython3/Lib/logging/
D__init__.py2100 def captureWarnings(capture): function
/external/python/cpython3/Doc/library/
Dlogging.rst1244 The :func:`captureWarnings` function can be used to integrate :mod:`logging`
1247 .. function:: captureWarnings(capture)
1259 (i.e. those in effect before ``captureWarnings(True)`` was called).
Dwarnings.rst44 :func:`logging.captureWarnings` allows you to handle all warnings with
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst4558 Added logging integration with warnings module using captureWarnings().
/external/python/cpython3/Misc/
DHISTORY15843 captureWarnings(). This change includes a NullHandler which does nothing;