Home
last modified time | relevance | path

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

/external/autotest/client/cros/cellular/
Dprologix_scpi_driver.py165 s = list(self.scpi_logger.findCaller())
168 s = list(self.scpi_logger.findCaller())
/external/autotest/client/common_lib/
Dlogging_manager.py130 _original_logger__find_caller = logging.Logger.findCaller
131 logging.Logger.findCaller = _logging_manager_aware_logger__find_caller
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py100 logger.findCaller = _logger_find_caller
/external/python/cpython2/Lib/logging/
D__init__.py1240 def findCaller(self): member in Logger
1284 fn, lno, func = self.findCaller()
/external/python/cpython3/Lib/logging/
D__init__.py1451 def findCaller(self, stack_info=False): member in Logger
1507 fn, lno, func, sinfo = self.findCaller(stack_info)
/external/python/cpython2/Doc/library/
Dlogging.rst264 .. method:: Logger.findCaller()
/external/python/cpython3/Doc/library/
Dlogging.rst303 .. method:: Logger.findCaller(stack_info=False)
/external/python/cpython3/Lib/test/
Dtest_logging.py4256 self.logger.findCaller(stack_info=True)
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst3761 Add exception handling around findCaller() call to help out IronPython.
/external/python/cpython3/Misc/
DHISTORY15585 - Issue #5287: Add exception handling around findCaller() call to help out