Searched refs:raiseExceptions (Results 1 – 12 of 12) sorted by relevance
/external/chromium-trace/catapult/devil/devil/utils/ |
D | decorators_test.py | 25 def raiseExceptions(): function 26 if raiseExceptions.count == 0: 27 raiseExceptions.count += 1 30 if raiseExceptions.count == 1: 32 raiseExceptions.count = 0 35 raiseExceptions() 37 raiseExceptions()
|
/external/autotest/client/ |
D | setup_modules_unittest.py | 21 logging.raiseExceptions = 1 55 self.assertFalse(logging.raiseExceptions)
|
D | setup_modules.py | 80 if logging.raiseExceptions: 83 logging.raiseExceptions = 0
|
/external/python/cpython2/Lib/logging/ |
D | __init__.py | 95 raiseExceptions = 1 variable 815 if raiseExceptions and sys.stderr: # see issue 13807 1233 if raiseExceptions: 1348 if (found == 0) and raiseExceptions and not self.manager.emittedNoHandlerWarning: 1686 if raiseExceptions:
|
/external/python/cpython3/Lib/logging/ |
D | __init__.py | 63 raiseExceptions = True variable 997 if raiseExceptions and sys.stderr: # see issue 13807 1495 if raiseExceptions: 1658 elif raiseExceptions and not self.manager.emittedNoHandlerWarning: 2140 if raiseExceptions:
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 762 old_raise = logging.raiseExceptions 774 logging.raiseExceptions = False 779 logging.raiseExceptions = old_raise 4038 old_raise_exceptions = logging.raiseExceptions 4061 logging.raiseExceptions = False 4068 logging.raiseExceptions = old_raise_exceptions 4102 raise_exceptions = logging.raiseExceptions 4154 logging.raiseExceptions = False 4158 logging.raiseExceptions = False 4162 logging.raiseExceptions = False [all …]
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 740 * If *logging.raiseExceptions* is ``False`` (production mode), the event is 743 * If *logging.raiseExceptions* is ``True`` (development mode), a message 964 checks to see if a module-level variable, :data:`raiseExceptions`, is set. If 968 .. note:: The default value of :data:`raiseExceptions` is ``True``. This is 970 exceptions that occur. It's advised that you set :data:`raiseExceptions` to
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 779 * If *logging.raiseExceptions* is ``False`` (production mode), the event is 782 * If *logging.raiseExceptions* is ``True`` (development mode), a message 1023 checks to see if a module-level variable, :data:`raiseExceptions`, is set. If 1027 .. note:: The default value of :data:`raiseExceptions` is ``True``. This is 1029 exceptions that occur. It's advised that you set :data:`raiseExceptions` to
|
/external/python/cpython2/Doc/library/ |
D | logging.rst | 409 ``raiseExceptions`` is ``False``, exceptions get silently ignored. This is 414 occurred. (The default value of ``raiseExceptions`` is ``True``, as that is
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 1008 :attr:`logging.raiseExceptions` is ``False``) or a message printed to 1009 ``sys.stderr`` (if :attr:`logging.raiseExceptions` is ``True``).
|
D | logging.rst | 483 ``raiseExceptions`` is ``False``, exceptions get silently ignored. This is 488 occurred. (The default value of ``raiseExceptions`` is ``True``, as that is
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 1196 :attr:`logging.raiseExceptions`. The new default handler is stored in
|