Home
last modified time | relevance | path

Searched refs:stack_info (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/logging/
D__init__.py334 self.stack_info = sinfo
593 def formatStack(self, stack_info): argument
604 return stack_info
632 if record.stack_info:
635 s = s + self.formatStack(record.stack_info)
1451 def findCaller(self, stack_info=False): argument
1469 if stack_info:
1496 def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False): argument
1507 fn, lno, func, sinfo = self.findCaller(stack_info)
1794 def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False): argument
[all …]
/external/ImageMagick/coders/
Dgif.c308 static inline int PopLZWStack(LZWStack *stack_info) in PopLZWStack() argument
310 if (stack_info->index <= stack_info->codes) in PopLZWStack()
312 stack_info->index--; in PopLZWStack()
313 return((int) *stack_info->index); in PopLZWStack()
316 static inline void PushLZWStack(LZWStack *stack_info,const size_t value) in PushLZWStack() argument
318 if (stack_info->index >= stack_info->top) in PushLZWStack()
320 *stack_info->index=value; in PushLZWStack()
321 stack_info->index++; in PushLZWStack()
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py63 def _logger_find_caller(stack_info=False): # pylint: disable=g-wrong-blank-lines argument
66 if stack_info:
/external/python/cpython3/Doc/library/
Dlogging.rst164 *exc_info*, *stack_info*, and *extra*.
171 The second optional keyword argument is *stack_info*, which defaults to
180 You can specify *stack_info* independently of *exc_info*, e.g. to just show
228 The *stack_info* parameter was added.
303 .. method:: Logger.findCaller(stack_info=False)
307 information is returned as ``None`` unless *stack_info* is ``True``.
592 .. method:: formatStack(stack_info)
816 | stack_info | You shouldn't need to | Stack frame information (where available) |
937 The second optional keyword argument is *stack_info*, which defaults to
946 You can specify *stack_info* independently of *exc_info*, e.g. to just show
[all …]
/external/python/cpython3/Lib/test/
Dtest_logging.py3590 logging.exception('failed', stack_info=True)
3598 self.assertTrue(r.stack_info.startswith('Stack (most recent '
3600 self.assertTrue(r.stack_info.endswith('logging.exception(\'failed\', '
4256 self.logger.findCaller(stack_info=True)
/external/python/cpython3/Misc/
DHISTORY11556 - Issue #1553375: logging: Added stack_info kwarg to display stack information.